You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ICSSoft.Frame.Data.Entity { public class FormICSWareHouseLotInfoUIModel : ICSWareHouseLotInfo { public string ID { get; set; } public string LotNO { get; set; } public string WHGUID { get; set; } public string WHCode { get; set; } public string BinGUID { get; set; } public string BinCode { get; set; } public string INVGUID { get; set; } public string INVCode { get; set; } public decimal LotQty { get; set; } public DateTime? ReceiveDate { get; set; } public string WorkPoint { get; set; } public string MUSER { get; set; } public string MUSERName { get; set; } public DateTime? MTIME { get; set; } public string VenderLotNO { get; set; } public string EATTRIBUTE1 { get; set; }
//库房
public FormICSStorageUIModel storage { get; set; } //库位
public FormICSStackUIModel stack { get; set; } //物料
public FormICSINVENTORYUIModel item { get; set; }
public FormICSITEMLotUIModel itemlot { get; set; }
} }
|