using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.ERPWMS.Entity { public class GetDNEntity { public string ID { get; set; } //到货单号 public string DNCode { get; set; } //到货单行号 public int DNLine { get; set; } //供应商代码 public string VenCode { get; set; } //类型(1:到货) public int DNType { get; set; } //物料代码 public string InvCode { get; set; } //数量 public decimal Quantity { get; set; } //辅计量数量 public decimal Amount { get; set; } //状态(1:开立,2:审核,3:关闭) public string Status { get; set; } //创建人 public string CreatePerson { get; set; } //创建时间 public DateTime? CreateDate { get; set; } //采购订单 public string PO { get; set; } //采购订单行号 public int POLine { get; set; } //送货单 public string ASNCode { get; set; } //送货单行号 public int ASNLine { get; set; } //自由项1 public string Extension1 { get; set; } //自由项2 public string Extension2 { get; set; } //自由项3 public string Extension3 { get; set; } //自由项4 public string Extension4 { get; set; } //自由项5 public string Extension5 { get; set; } //操作时间 public DateTime? dModifyDate { get; set; } //站点 public string WorkPoint { get; set; } } }