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