JOB_CRAFTINFO.cs.svn-base 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Core.LgMes.Server.lgClassModel
  5. {
  6. [Serializable]
  7. public class JOB_CRAFTINFO
  8. {
  9. public String HEATNO = ""; // 熔炼号
  10. public String AIM_GRADE_CODE = ""; // 牌号编码
  11. public String STEEL = ""; // 牌号名称
  12. public String FACT_ROUTE = ""; // 实绩作业路线
  13. public String CAST_ID = ""; // 铸机号
  14. public String HEAT_STATE = ""; // 执行状态
  15. public String PLAN_MAKING_TIME = ""; // 计划制定时间
  16. public String PLAN_MAKER = ""; // 计划制定人
  17. public String CAST_NO = ""; // 浇次号
  18. public String CAST_SEQ = ""; // 浇次内顺序
  19. public String SENDTOOLID = ""; // 钢包号
  20. public String SENDGRADE = ""; // 钢包等级
  21. public String INSTANCE = ""; // 钢包包况
  22. public String ORD_GON_ID = ""; // 订单号
  23. public String PLAN_LINES = ""; // 工艺路线
  24. public String MATERIELDEPICT = ""; // 物料描述
  25. public String STD_CODE = ""; // 炼钢工艺码
  26. public String V_HEAT_ID = ""; // 虚拟炉号
  27. public String VANHEATNO = ""; // 提钒炉号
  28. public String AIM_W_T = ""; //定尺
  29. public String STEELPASS=""; //上一炉钢种
  30. public String BALELEAVEWGTPASS=""; //上一炉下台重量(钢水皮重)
  31. public String GSPZ=""; //与钢水皮重差
  32. public String TAPPINGENDTIME=""; //距放钢时间
  33. public String SEDATIONTIME = ""; //镇静时间
  34. public String ISADDTOP = ""; //钢水加盖
  35. public String INCLUSION = ""; //夹杂物标准
  36. public JOB_CRAFTINFO()
  37. {
  38. }
  39. public JOB_CRAFTINFO(String heatno, String aim_grade_code, String steel,
  40. String fact_route, String cast_id, String heat_state,
  41. String plan_making_time, String plan_maker, String cast_no,
  42. String cast_seq, String sendtoolid, String sendgrade,
  43. String instance, String ord_gon_id, String plan_lines,
  44. String materieldepict, String std_code, String v_heat_id,
  45. String vanheatno, String aim_w_t, String steelpass, String baleleavewgtpass,
  46. String gspz, String tappingendtime, String sedationtime, String isaddtop,String inclusion)
  47. {
  48. this.HEATNO = heatno; // 熔炼号
  49. this.AIM_GRADE_CODE = aim_grade_code; // 牌号编码
  50. this.STEEL = steel; // 牌号名称
  51. this.FACT_ROUTE = fact_route; // 实绩作业路线
  52. this.CAST_ID = cast_id; // 铸机号
  53. this.HEAT_STATE = heat_state; // 执行状态
  54. this.PLAN_MAKING_TIME = plan_making_time; // 计划制定时间
  55. this.PLAN_MAKER = plan_maker; // 计划制定人
  56. this.CAST_NO = cast_no; // 浇次号
  57. this.CAST_SEQ = cast_seq; // 浇次内顺序
  58. this.SENDTOOLID = sendtoolid; // 钢包号
  59. this.SENDGRADE = sendgrade; // 钢包等级
  60. this.INSTANCE = instance; // 钢包包况
  61. this.ORD_GON_ID = ord_gon_id; // 订单号
  62. this.PLAN_LINES = plan_lines; // 工艺路线
  63. this.MATERIELDEPICT = materieldepict; // 物料描述
  64. this.STD_CODE = std_code; // 炼钢工艺码
  65. this.V_HEAT_ID = v_heat_id; // 虚拟炉号
  66. this.VANHEATNO = vanheatno; // 提钒炉号
  67. this.AIM_W_T = aim_w_t;//定尺
  68. this.STEELPASS = steelpass;//上一炉钢种
  69. this.BALELEAVEWGTPASS = baleleavewgtpass;//上一炉下台重量(钢水皮重)
  70. this.GSPZ = gspz;//与钢水皮重差
  71. this.TAPPINGENDTIME = tappingendtime;//距放钢时间
  72. this.SEDATIONTIME = sedationtime;//镇静时间
  73. this.ISADDTOP = isaddtop;//钢水加盖
  74. this.INCLUSION = inclusion;//夹杂物标准
  75. }
  76. public String getHeatno()
  77. {
  78. return this.HEATNO;
  79. }
  80. public void setHeatno(String heatno)
  81. {
  82. this.HEATNO = heatno;
  83. }
  84. public String getAim_grade_code()
  85. {
  86. return this.AIM_GRADE_CODE;
  87. }
  88. public void setAim_grade_code(String aim_grade_code)
  89. {
  90. this.AIM_GRADE_CODE = aim_grade_code;
  91. }
  92. public String getSteel()
  93. {
  94. return this.STEEL;
  95. }
  96. public void setSteel(String steel)
  97. {
  98. this.STEEL = steel;
  99. }
  100. public String getFact_route()
  101. {
  102. return this.FACT_ROUTE;
  103. }
  104. public void setFact_route(String fact_route)
  105. {
  106. this.FACT_ROUTE = fact_route;
  107. }
  108. public String getCast_id()
  109. {
  110. return this.CAST_ID;
  111. }
  112. public void setCast_id(String cast_id)
  113. {
  114. this.CAST_ID = cast_id;
  115. }
  116. public String getHeat_state()
  117. {
  118. return this.HEAT_STATE;
  119. }
  120. public void setHeat_state(String heat_state)
  121. {
  122. this.HEAT_STATE = heat_state;
  123. }
  124. public String getPlan_making_time()
  125. {
  126. return this.PLAN_MAKING_TIME;
  127. }
  128. public void setPlan_making_time(String plan_making_time)
  129. {
  130. this.PLAN_MAKING_TIME = plan_making_time;
  131. }
  132. public String getPlan_maker()
  133. {
  134. return this.PLAN_MAKER;
  135. }
  136. public void setPlan_maker(String plan_maker)
  137. {
  138. this.PLAN_MAKER = plan_maker;
  139. }
  140. public String getCast_no()
  141. {
  142. return this.CAST_NO;
  143. }
  144. public void setCast_no(String cast_no)
  145. {
  146. this.CAST_NO = cast_no;
  147. }
  148. public String getCast_seq()
  149. {
  150. return this.CAST_SEQ;
  151. }
  152. public void setCast_seq(String cast_seq)
  153. {
  154. this.CAST_SEQ = cast_seq;
  155. }
  156. public String getSendtoolid()
  157. {
  158. return this.SENDTOOLID;
  159. }
  160. public void setSendtoolid(String sendtoolid)
  161. {
  162. this.SENDTOOLID = sendtoolid;
  163. }
  164. public String getSendgrade()
  165. {
  166. return this.SENDGRADE;
  167. }
  168. public void setSendgrade(String sendgrade)
  169. {
  170. this.SENDGRADE = sendgrade;
  171. }
  172. public String getInstance()
  173. {
  174. return this.INSTANCE;
  175. }
  176. public void setInstance(String instance)
  177. {
  178. this.INSTANCE = instance;
  179. }
  180. public String getOrd_gon_id()
  181. {
  182. return this.ORD_GON_ID;
  183. }
  184. public void setOrd_gon_id(String ord_gon_id)
  185. {
  186. this.ORD_GON_ID = ord_gon_id;
  187. }
  188. public String getPlan_lines()
  189. {
  190. return this.PLAN_LINES;
  191. }
  192. public void setPlan_lines(String plan_lines)
  193. {
  194. this.PLAN_LINES = plan_lines;
  195. }
  196. public String getMaterieldepict()
  197. {
  198. return this.MATERIELDEPICT;
  199. }
  200. public void setMaterieldepict(String materieldepict)
  201. {
  202. this.MATERIELDEPICT = materieldepict;
  203. }
  204. public String getStd_code()
  205. {
  206. return this.STD_CODE;
  207. }
  208. public void setStd_code(String std_code)
  209. {
  210. this.STD_CODE = std_code;
  211. }
  212. public String getV_heat_id()
  213. {
  214. return this.V_HEAT_ID;
  215. }
  216. public void setV_heat_id(String v_heat_id)
  217. {
  218. this.V_HEAT_ID = v_heat_id;
  219. }
  220. public String getVanheatno()
  221. {
  222. return this.VANHEATNO;
  223. }
  224. public void setVanheatno(String vanheatno)
  225. {
  226. this.VANHEATNO = vanheatno;
  227. }
  228. public String getAim_w_t()
  229. {
  230. return this.AIM_W_T;
  231. }
  232. public void setAim_w_t(String aim_w_t)
  233. {
  234. this.AIM_W_T = aim_w_t;
  235. }
  236. public String getSTEELPASS()
  237. {
  238. return STEELPASS;
  239. }
  240. public void setSTEELPASS(String sTEELPASS)
  241. {
  242. STEELPASS = sTEELPASS;
  243. }
  244. public String getBALELEAVEWGTPASS()
  245. {
  246. return BALELEAVEWGTPASS;
  247. }
  248. public void setBALELEAVEWGTPASS(String bALELEAVEWGTPASS)
  249. {
  250. BALELEAVEWGTPASS = bALELEAVEWGTPASS;
  251. }
  252. public String getGSPZ()
  253. {
  254. return GSPZ;
  255. }
  256. public void setGSPZ(String gSPZ)
  257. {
  258. GSPZ = gSPZ;
  259. }
  260. public String getTAPPINGENDTIME()
  261. {
  262. return TAPPINGENDTIME;
  263. }
  264. public void setTAPPINGENDTIME(String tAPPINGENDTIME)
  265. {
  266. TAPPINGENDTIME = tAPPINGENDTIME;
  267. }
  268. public String getSEDATIONTIME()
  269. {
  270. return SEDATIONTIME;
  271. }
  272. public void setSEDATIONTIME(String sEDATIONTIME)
  273. {
  274. SEDATIONTIME = sEDATIONTIME;
  275. }
  276. public String getISADDTOP()
  277. {
  278. return ISADDTOP;
  279. }
  280. public void setISADDTOP(String sISADDTOP)
  281. {
  282. ISADDTOP = sISADDTOP;
  283. }
  284. public String getINCLUSION()
  285. {
  286. return INCLUSION;
  287. }
  288. public void setINCLUSION(String iNCLUSION)
  289. {
  290. INCLUSION = iNCLUSION;
  291. }
  292. public void Copy(ref JOB_CRAFTINFO par)
  293. {
  294. //VANHEATNO = par.VANHEATNO;//提钒炉号
  295. //HEATNO =par.HEATNO; //熔炼号
  296. //AIM_GRADE_CODE =par.AIM_GRADE_CODE ; //牌号编码
  297. //STEEL = par.STEEL; //牌号名称
  298. //FACT_ROUTE =par.FACT_ROUTE; //实绩作业路线
  299. //CAST_ID = par.CAST_ID; //铸机号
  300. //HEAT_STATE = par.HEAT_STATE; //执行状态
  301. //PLAN_MAKING_TIME =par.PLAN_MAKING_TIME; //计划制定时间
  302. //PLAN_MAKER =par.PLAN_MAKER; //计划制定人
  303. //CAST_NO = par.CAST_NO; //浇次号
  304. //CAST_SEQ = par.CAST_SEQ; //浇次内顺序
  305. //SENDTOOLID =par.SENDTOOLID; //钢包号
  306. //SENDGRADE = par.SENDGRADE; //钢包等级
  307. //INSTANCE = par.INSTANCE; //钢包包况
  308. //ORD_GON_ID = par.ORD_GON_ID; //订单号
  309. //PLAN_LINES =par.PLAN_LINES;//工艺路线
  310. //MATERIELDEPICT = par.MATERIELDEPICT;//物料描述
  311. //STD_CODE = par.STD_CODE; //炼钢工艺码
  312. //V_HEAT_ID = par.V_HEAT_ID; //虚拟炉号
  313. }
  314. }
  315. }