using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.ERPWMS.Entity { public class CreateASNEntity { //表头ID public string ID { get; set; } //送货单号 public string ASNCode { get; set; } //供应商编码 public string VenCode { get; set; } //状态(0:开立;1:审核中;2:已审核;);默认2 public string Status { get; set; } //操作人编码 public string MUSER { get; set; } //操作人名称 public string MUSERName { get; set; } //站点 public string WorkPoint { get; set; } //操作时间 public DateTime? MTIME { get; set; } //自定义字段 public string EATTRIBUTE1 { get; set; } //表体对象数组 public List list { get; set; } } public class CreateASNDetailEntity { //表体ID public string ID { get; set; } //送货单号 public string ASNCode { get; set; } //行号 public string Sequence { get; set; } //条码 public string LotNo { get; set; } //数量 public decimal? Quantity { get; set; } //辅计量数量 public decimal Amount { get; set; } //实际到货数量 public decimal DNQuantity { get; set; } //实际到货辅计量数量 public decimal DNAmount { get; set; } //操作人编码 public string MUSER { get; set; } //操作人名称 public string MUSERName { get; set; } //站点 public string WorkPoint { get; set; } //操作时间 public DateTime? MTIME { get; set; } } }