using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SupplierReport Data Structure. /// [Serializable] public class SupplierReport : AopObject { /// /// 盘点单创建渠道 notify:菜鸟通知,daily:日常调度,manual:手动定制 /// [XmlElement("channel")] public string Channel { get; set; } /// /// 操作者id /// [XmlElement("operator_id")] public string OperatorId { get; set; } /// /// 操作者类型,只会是system /// [XmlElement("operator_type")] public string OperatorType { get; set; } /// /// 盘点单下单日期 /// [XmlElement("order_date")] public string OrderDate { get; set; } /// /// 备注信息 /// [XmlElement("remark")] public string Remark { get; set; } /// /// 盘点单状态 INIT:未完成 FINISHED:已完成 /// [XmlElement("state")] public string State { get; set; } /// /// 供货商id /// [XmlElement("supplier_id")] public string SupplierId { get; set; } /// /// 供货商盘点单id /// [XmlElement("supplier_report_id")] public string SupplierReportId { get; set; } /// /// 唯一约束 /// [XmlElement("unique_id")] public string UniqueId { get; set; } /// /// 仓库编码 /// [XmlElement("warehouse_code")] public string WarehouseCode { get; set; } } }