103 lines
2.8 KiB
C#
103 lines
2.8 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// BakingItemOperationData Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class BakingItemOperationData : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 累计库存
|
||
/// </summary>
|
||
[XmlElement("accumulate_inventory")]
|
||
public string AccumulateInventory { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作后库存
|
||
/// </summary>
|
||
[XmlElement("ending_inventory")]
|
||
public string EndingInventory { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作后位置,传中文或id均可
|
||
/// </summary>
|
||
[XmlElement("ending_position")]
|
||
public string EndingPosition { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商品毛利率,百分比毛利率*100
|
||
/// </summary>
|
||
[XmlElement("gross_profit_margin")]
|
||
public string GrossProfitMargin { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作前库存
|
||
/// </summary>
|
||
[XmlElement("opening_inventory")]
|
||
public string OpeningInventory { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作名称;如果是示例值中的操作请按示例值英文传递,其他操作自行传递有意义的英文
|
||
/// </summary>
|
||
[XmlElement("operation_name")]
|
||
public string OperationName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作数量
|
||
/// </summary>
|
||
[XmlElement("operation_num")]
|
||
public string OperationNum { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作时间
|
||
/// </summary>
|
||
[XmlElement("operation_time")]
|
||
public string OperationTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作人,传中文或id均可
|
||
/// </summary>
|
||
[XmlElement("operator")]
|
||
public string Operator { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商品批次
|
||
/// </summary>
|
||
[XmlElement("sku_batch")]
|
||
public string SkuBatch { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商品id
|
||
/// </summary>
|
||
[XmlElement("sku_id")]
|
||
public string SkuId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商品名称
|
||
/// </summary>
|
||
[XmlElement("sku_name")]
|
||
public string SkuName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商品制作时长,单位为秒
|
||
/// </summary>
|
||
[XmlElement("sku_production_time")]
|
||
public long SkuProductionTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商品售卖价格
|
||
/// </summary>
|
||
[XmlElement("sku_selling_price")]
|
||
public string SkuSellingPrice { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作前位置,传中文或id均可
|
||
/// </summary>
|
||
[XmlElement("starting_position")]
|
||
public string StartingPosition { get; set; }
|
||
}
|
||
}
|