using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Frame.Data.Entity { public class FormICSPickingModel : ICSMaterial { //入库单ID public string ID { get; set; } //入库单号 public string VouchCode { get; set; } //入库单状态 public string PickingSTATUS { get; set; } //供应商代码 public string VENDORCODE { get; set; } //入库单类型 public string PickingTYPE { get; set; } //备注 public string WHCode { get; set; } public string MEMO { get; set; } public DateTime? CreateTIME { get; set; } public string CreateUSER { get; set; } public string WorkPoint { get; set; } public string MUSER { get; set; } public string MUSERName { get; set; } public DateTime? MTIME { get; set; } public string EATTRIBUTE1 { get; set; } //是否所有入库单明细都已入库,Y/N public string ISALLINSTORAGE { get; set; } public FormICSStorageUIModel sto { get; set; } public FormICSVendorUIModel ven { get; set; } public List FormICSPickingDetail { get; set; } public string Dept { get; set; } public string OutCategory { get; set; } public int IsPickingOrBack { get; set; } public bool IsMROItem { get; set; } //RDCode public string RDCode { get; set; } } /// /// 入库单行 /// public class FormICSPickingDetailModel : ICSMaterialPick { //入库单号 public string VouchCode { get; set; } //入库单ID public string ID { get; set; } //主表ID //public string PickingID { get; set; } //入库单行号 public string VouchRow { get; set; } //入库单行状态 public string MORow { get; set; } //应退数量 public Decimal? Quantity { get; set; } //已退数量 public Decimal? HasQuantity { get; set; } //存货编码 public string SubInvCode { get; set; } //货物类型 public string MoveType { get; set; } //库房 public string WHCode { get; set; } //批次 public string LotNo { get; set; } public string Reservation { get; set; } public string ReservationRow { get; set; } public string DeleteStatus { get; set; } public string Status { get; set; } public string VoucherNO { get; set; }//苏船工号 //public string MEMO { get; set; } //public DateTime? CreateTIME { get; set; } //public string CreateUSER { get; set; } public string WorkPoint { get; set; } public string MUSER { get; set; } public string MUSERName { get; set; } public DateTime? VoucherDate { get; set; } public DateTime? MTIME { get; set; } public string EATTRIBUTE { get; set; } //是否所有入库单明细都已入库,Y/N public string ISALLINSTORAGE { get; set; } public FormICSStorageUIModel sto { get; set; } public FormICSVendorUIModel ven { get; set; } //新增 钉钉评审号 ZM public string DDNo { get; set; } //备注 public string Remarks { get; set; } //出库类型 public string OutCategory { get; set; } //部门 public string Dept { get; set; } //RDCode public string RDCode { get; set; } } }