using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.ERPWMS.Entity { public class GetPurchaseStockInEntity { public string ID { get; set; } //条码 public string LotNo { 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 InvCode { get; set; } //入库数量 public decimal Quantity { get; set; } //入库仓库 public string ToWarehouseCode { get; set; } //入库库位 public string ToLocationCode { get; set; } //采购入库单号 public string RcvDoc { get; set; } //采购入库单行号 public int RcvDocLine { get; set; } //类型(2:收) public string TransType { get; set; } //业务类型(1:采购入库) public string BusinessCode { get; set; } //操作人 public string MUSER { get; set; } //操作人名称 public string MUSERName { get; set; } //操作时间 public DateTime? dModifyDate { get; set; } //站点 public string WorkPoint { get; set; } } }