using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Frame.Data.Entity { public class FormICSNCRDataUIModel { public string NCRNumber { get; set; } public ICSNCRDoc Entity_ICSNCRDoc { get; set; } public ICSNCRDocPrevention Entity_Prevention { get; set; } public List Entity_PreventionProcesslist { get; set; } public ICSNCRDocRectify Entity_Rectify { get; set; } public List Entity_RectifyProcesslist { get; set; } public List Entity_Picturelist { get; set; } public List Entity_RectifyBonusPenaltylist { get; set; } public List PreventionProNamelist { get; set; } public List RectifyProNamelist { get; set; } } public class NCRDocRectifyProcessModel { public string RectifyUser { get; set; } public ICSNCRDocRectifyProcess Entity_RectifyProcess { get; set; } } public class NCRDocPreventionProcessModel { public string PreventionUser { get; set; } public ICSNCRDocPreventionProcess Entity_PreventionProcess { get; set; } } public class NCRProcessBackModel { public string Department { get; set; } public string BackContect { get; set; } public DateTime BackTime { get; set; } } public class NCRCPIRModel { public string SecDocNO { get; set; } public string ErrorType { get; set; } public string ItemCode { get; set; } public string ItemName { get; set; } public string SrcDocInfo { get; set; } public decimal? Qty { get; set; } public string ContentDesc { get; set; } public string Furnace { get; set; } public string Point { get; set; } public string ProjectCode { get; set; } public DateTime? SecDocCreateTime { get; set; } public DateTime? RequirDate { get; set; } } public class NCR_SupplyModel { public string SupplyCode { get; set; } public string SupplyName{ get; set; } public string PONo { get; set; } public string POLineNo { get; set; } } public class NCR_UPloadOAModel { public string LotNo { get; set; } public string Type { get; set; } public string Qty { get; set; } public string NCRDocNo { get; set; } public string OPCode { get; set; } public string OPName { get; set; } public string itemcode { get; set; } public string itemname { get; set; } public string itemstd { get; set; } public string codetype { get; set; } public string contentdesc { get; set; } public string codenum { get; set; } public decimal? okqty { get; set; } public decimal? ngqty { get; set; } public decimal? fxqty { get; set; } public decimal? jjssqty { get; set; } public string OAStatus { get; set; } public string Desc { get; set; } } }