using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SupplierReportDetail Data Structure. /// [Serializable] public class SupplierReportDetail : AopObject { /// /// 批次编码 /// [XmlElement("batch_code")] public string BatchCode { get; set; } /// /// 过期日期 /// [XmlElement("expire_date")] public string ExpireDate { get; set; } /// /// 货品编码 /// [XmlElement("goods_code")] public string GoodsCode { get; set; } /// /// 库存类型 /// [XmlElement("inventory_type")] public string InventoryType { get; set; } /// /// 价格 /// [XmlElement("price")] public string Price { get; set; } /// /// 生产日期 /// [XmlElement("production_date")] public string ProductionDate { get; set; } /// /// 差异数量,为正整数 /// [XmlElement("quantity_diff")] public long QuantityDiff { get; set; } /// /// 盘盈/盘亏(increase/reduce) /// [XmlElement("report_type")] public string ReportType { get; set; } /// /// 供货商盘点单明细id /// [XmlElement("supplier_report_detail_id")] public string SupplierReportDetailId { get; set; } /// /// 供货商盘点单id /// [XmlElement("supplier_report_id")] public string SupplierReportId { get; set; } } }