using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Frame.Data.Entity { public class FormICSITEMTransLotUIModel : ICSITEMTransLot { public string ID { get; set; } public string ITEMTransID { get; set; } public string LotNO { get; set; } public string ITEMCODE { get; set; } public decimal TransQTY { get; set; } public string Memo { get; set; } public string MUSER { get; set; } public string MUSERName { get; set; } public DateTime? MTIME { get; set; } public string WorkPoint { get; set; } public List lotdetail { get; set; } } }