using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.ERPWMS.Entity { public class GetInspectionEntity { public string ID { get; set; } //送货单 public string ASNCode { get; set; } //送货单行号 public int ASNLine { get; set; } //到货单号 public string DNCode { get; set; } //到货单行号 public int DNLine { get; set; } //采购订单 public string PO { get; set; } //采购订单行号 public int POLine { get; set; } //条码 public string LotNo { get; set; } //物料编码 public string InvCode { get; set; } //数量 public decimal Quantity { get; set; } //合格数量 public decimal QualifiedQuantity { get; set; } //不合格数量 public decimal UnqualifiedQuantity { get; set; } //特采数量 public decimal WaiveQuantity { get; set; } //不良原因代码 public string ECSCode { get; set; } //类型(1:采购) public string Type { get; set; } //操作人 public string MUSER { get; set; } //操作人名称 public string MUSERName { get; set; } //操作时间 public DateTime? dModifyDate { get; set; } //站点 public string WorkPoint { get; set; } } }