using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Frame.Data.Entity { public class ITEM2ROUTE2OP2TIMEawt { public string ITEMID { get; set; } public string ITEMCODE { get; set; } public string ITEMNAME { get; set; } public string USERID { get; set; } public string USERCODE{ get; set; } public string USERNAME { get; set; } public string WorkPoint { get; set; } public DateTime MTIME { get; set; } public List listRoute { get; set; } } public class ROUTEawt { public string ROUTEID { get; set; } public string ROUTECODE { get; set; } public string ROUTENAME { get; set; } public string ROUTEDESC{ get; set; } public string MGR_USER { get; set; } public string ENABLED { get; set; }//生效/失效 public string ROUTEVER { get; set; } public string ROUTETYPE { get; set; } public DateTime EFFDATE { get; set; } public DateTime IVLDATE { get; set; } public List listOP { get; set; } } /// /// 1.工序信息 /// 2.物料-工艺-工序对应的设备标准工时 /// public class OPTIMEawt { public string ID { get; set; } public string OriOPCODE { get; set; } public int OPSEQ { get; set; } public string OPID { get; set; } public string OPCODE { get; set; } public string OPDESC { get; set; } public string OPNAME { get; set; } public string OPAttr { get; set; } public string CtrlType { get; set; } public string OPLVL { get; set; } public string CostCenter { get; set; } public string OpFrom { get; set; } public bool EnableFlag { get; set; } public string OPCOLLECTION { get; set; } public string OPCONTROL { get; set; } public decimal STIME { get; set; } public decimal RTIME { get; set; } public decimal? WTIME { get; set; } public decimal JYTime { get; set; } public decimal ZJTime { get; set; } public string Type { get; set; } public string 默认工时 { get; set; } public string Status { get; set; } public string cClass { get; set; } public int cHandles { get; set; } public int cAxis { get; set; } public int cToolMagazine { get; set; } public int cMachinableProfiles { get; set; } public string cAccuracy { get; set; } public string Memo { get; set; } public string EQPCODE { get; set; } public string CXTYPE { get; set; } public string CXJD { get; set; } public string CXBrand1 { get; set; } public string CXBrand2 { get; set; } public string CXBrand3 { get; set; } } }