CraftSamplingDetailEntity.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. using Core.Mes.Client.Comm.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Core.StlMes.Client.Lims.Port.数据管理.实体类
  8. {
  9. /// <summary>
  10. /// 数据库表CRAFT_SAMPLING_DETAIL所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:DM22222 时间:2018-05-14
  12. /// </summary>
  13. public class CraftSamplingDetailEntity
  14. {
  15. /// <summary>
  16. /// 工艺文件号
  17. /// </summary>
  18. private string craftNo = "";
  19. /// <summary>
  20. /// 工序代码
  21. /// </summary>
  22. private string processCode = "";
  23. /// <summary>
  24. /// 0;正常,1:首检增项
  25. /// </summary>
  26. private string type = "";
  27. /// <summary>
  28. /// 试样编号
  29. /// </summary>
  30. private string splineNo = "";
  31. /// <summary>
  32. /// 取样码
  33. /// </summary>
  34. private string phyCodeMin = "";
  35. /// <summary>
  36. /// 取样码描述
  37. /// </summary>
  38. private string phyNameMin = "";
  39. /// <summary>
  40. /// 取样频率代码(4011)(组批要求,支数限制)
  41. /// </summary>
  42. private string rate = "";
  43. /// <summary>
  44. /// 取样频率描述
  45. /// </summary>
  46. private string descRate = "";
  47. /// <summary>
  48. /// 分批单位(米/支/吨)
  49. /// </summary>
  50. private string batchUnit = "";
  51. /// <summary>
  52. /// 每批支数 改成 分批数量
  53. /// </summary>
  54. private decimal? batchCnt = null;
  55. /// <summary>
  56. /// 取样数量
  57. /// </summary>
  58. private decimal? descCount = null;
  59. /// <summary>
  60. /// 试验样条数
  61. /// </summary>
  62. private decimal? sampleCount = null;
  63. /// <summary>
  64. /// 取样位置代码(4012)
  65. /// </summary>
  66. private string position = "";
  67. /// <summary>
  68. /// 取样位置描述
  69. /// </summary>
  70. private string descPosition = "";
  71. /// <summary>
  72. /// 取样长度代码
  73. /// </summary>
  74. private string length = "";
  75. /// <summary>
  76. /// 取样宽度
  77. /// </summary>
  78. private decimal? width = null;
  79. /// <summary>
  80. /// 样片类型( 环 或 片)(COM_BASE_SPLINE)
  81. /// </summary>
  82. private string sampleStyle = "";
  83. /// <summary>
  84. /// 样片类型描述
  85. /// </summary>
  86. private string sampleStyleDesc = "";
  87. /// <summary>
  88. /// 试样组代码
  89. /// </summary>
  90. private string phyCodeGroup = "";
  91. /// <summary>
  92. /// 试样组代码描述
  93. /// </summary>
  94. private string phyNameGroup = "";
  95. /// <summary>
  96. /// 附加1(%)
  97. /// </summary>
  98. private decimal? attachPercent = null;
  99. /// <summary>
  100. /// 附加2(支)
  101. /// </summary>
  102. private decimal? attachCount = null;
  103. /// <summary>
  104. /// 前几炉
  105. /// </summary>
  106. private decimal? topStove = null;
  107. /// <summary>
  108. /// 循环值
  109. /// </summary>
  110. private decimal? loopValue = null;
  111. /// <summary>
  112. /// ORD_LN_PK(ORD_PK+三位流失号)
  113. /// </summary>
  114. private string ordLnPk = "";
  115. /// <summary>
  116. /// 序号
  117. /// </summary>
  118. private decimal? craftSeq = null;
  119. /// <summary>
  120. /// 工艺文件号
  121. /// </summary>
  122. [Description("工艺文件号")]
  123. [Nullable(false)]
  124. [DataLength(150)]
  125. public string CraftNo
  126. {
  127. get { return craftNo; }
  128. set { craftNo = value; }
  129. }
  130. /// <summary>
  131. /// 工序代码
  132. /// </summary>
  133. [Description("工序代码")]
  134. [Nullable(false)]
  135. [DataLength(100)]
  136. public string ProcessCode
  137. {
  138. get { return processCode; }
  139. set { processCode = value; }
  140. }
  141. /// <summary>
  142. /// 0;正常,1:首检增项
  143. /// </summary>
  144. [Description("0;正常,1:首检增项")]
  145. [Nullable(true)]
  146. [DataLength(2)]
  147. public string Type
  148. {
  149. get { return type; }
  150. set { type = value; }
  151. }
  152. /// <summary>
  153. /// 试样编号
  154. /// </summary>
  155. [Description("试样编号")]
  156. [Nullable(false)]
  157. [DataLength(10)]
  158. public string SplineNo
  159. {
  160. get { return splineNo; }
  161. set { splineNo = value; }
  162. }
  163. /// <summary>
  164. /// 取样码
  165. /// </summary>
  166. [Description("取样码")]
  167. [Nullable(false)]
  168. [DataLength(5)]
  169. public string PhyCodeMin
  170. {
  171. get { return phyCodeMin; }
  172. set { phyCodeMin = value; }
  173. }
  174. /// <summary>
  175. /// 取样码描述
  176. /// </summary>
  177. [Description("取样码描述")]
  178. [Nullable(false)]
  179. [DataLength(100)]
  180. public string PhyNameMin
  181. {
  182. get { return phyNameMin; }
  183. set { phyNameMin = value; }
  184. }
  185. /// <summary>
  186. /// 取样频率代码(4011)(组批要求,支数限制)
  187. /// </summary>
  188. [Description("取样频率代码(4011)(组批要求,支数限制)")]
  189. [Nullable(true)]
  190. [DataLength(20)]
  191. public string Rate
  192. {
  193. get { return rate; }
  194. set { rate = value; }
  195. }
  196. /// <summary>
  197. /// 取样频率描述
  198. /// </summary>
  199. [Description("取样频率描述")]
  200. [Nullable(true)]
  201. [DataLength(200)]
  202. public string DescRate
  203. {
  204. get { return descRate; }
  205. set { descRate = value; }
  206. }
  207. /// <summary>
  208. /// 分批单位(米/支/吨)
  209. /// </summary>
  210. [Description("分批单位(米/支/吨)")]
  211. [Nullable(true)]
  212. [DataLength(20)]
  213. public string BatchUnit
  214. {
  215. get { return batchUnit; }
  216. set { batchUnit = value; }
  217. }
  218. /// <summary>
  219. /// 每批支数 改成 分批数量
  220. /// </summary>
  221. [Description("每批支数 改成 分批数量")]
  222. [Nullable(true)]
  223. [DataLength(22)]
  224. public decimal? BatchCnt
  225. {
  226. get { return batchCnt; }
  227. set { batchCnt = value; }
  228. }
  229. /// <summary>
  230. /// 取样数量
  231. /// </summary>
  232. [Description("取样数量")]
  233. [Nullable(true)]
  234. [DataLength(22)]
  235. public decimal? DescCount
  236. {
  237. get { return descCount; }
  238. set { descCount = value; }
  239. }
  240. /// <summary>
  241. /// 试验样条数
  242. /// </summary>
  243. [Description("试验样条数")]
  244. [Nullable(true)]
  245. [DataLength(22)]
  246. public decimal? SampleCount
  247. {
  248. get { return sampleCount; }
  249. set { sampleCount = value; }
  250. }
  251. /// <summary>
  252. /// 取样位置代码(4012)
  253. /// </summary>
  254. [Description("取样位置代码(4012)")]
  255. [Nullable(true)]
  256. [DataLength(20)]
  257. public string Position
  258. {
  259. get { return position; }
  260. set { position = value; }
  261. }
  262. /// <summary>
  263. /// 取样位置描述
  264. /// </summary>
  265. [Description("取样位置描述")]
  266. [Nullable(true)]
  267. [DataLength(200)]
  268. public string DescPosition
  269. {
  270. get { return descPosition; }
  271. set { descPosition = value; }
  272. }
  273. /// <summary>
  274. /// 取样长度代码
  275. /// </summary>
  276. [Description("取样长度代码")]
  277. [Nullable(true)]
  278. [DataLength(20)]
  279. public string Length
  280. {
  281. get { return length; }
  282. set { length = value; }
  283. }
  284. /// <summary>
  285. /// 取样宽度
  286. /// </summary>
  287. [Description("取样宽度")]
  288. [Nullable(true)]
  289. [DataLength(22)]
  290. public decimal? Width
  291. {
  292. get { return width; }
  293. set { width = value; }
  294. }
  295. /// <summary>
  296. /// 样片类型( 环 或 片)(COM_BASE_SPLINE)
  297. /// </summary>
  298. [Description("样片类型( 环 或 片)(COM_BASE_SPLINE)")]
  299. [Nullable(true)]
  300. [DataLength(6)]
  301. public string SampleStyle
  302. {
  303. get { return sampleStyle; }
  304. set { sampleStyle = value; }
  305. }
  306. /// <summary>
  307. /// 样片类型描述
  308. /// </summary>
  309. [Description("样片类型描述")]
  310. [Nullable(true)]
  311. [DataLength(16)]
  312. public string SampleStyleDesc
  313. {
  314. get { return sampleStyleDesc; }
  315. set { sampleStyleDesc = value; }
  316. }
  317. /// <summary>
  318. /// 试样组代码
  319. /// </summary>
  320. [Description("试样组代码")]
  321. [Nullable(false)]
  322. [DataLength(200)]
  323. public string PhyCodeGroup
  324. {
  325. get { return phyCodeGroup; }
  326. set { phyCodeGroup = value; }
  327. }
  328. /// <summary>
  329. /// 试样组代码描述
  330. /// </summary>
  331. [Description("试样组代码描述")]
  332. [Nullable(false)]
  333. [DataLength(200)]
  334. public string PhyNameGroup
  335. {
  336. get { return phyNameGroup; }
  337. set { phyNameGroup = value; }
  338. }
  339. /// <summary>
  340. /// 附加1(%)
  341. /// </summary>
  342. [Description("附加1(%)")]
  343. [Nullable(true)]
  344. [DataLength(5)]
  345. public decimal? AttachPercent
  346. {
  347. get { return attachPercent; }
  348. set { attachPercent = value; }
  349. }
  350. /// <summary>
  351. /// 附加2(支)
  352. /// </summary>
  353. [Description("附加2(支)")]
  354. [Nullable(true)]
  355. [DataLength(22)]
  356. public decimal? AttachCount
  357. {
  358. get { return attachCount; }
  359. set { attachCount = value; }
  360. }
  361. /// <summary>
  362. /// 前几炉
  363. /// </summary>
  364. [Description("前几炉")]
  365. [Nullable(true)]
  366. [DataLength(22)]
  367. public decimal? TopStove
  368. {
  369. get { return topStove; }
  370. set { topStove = value; }
  371. }
  372. /// <summary>
  373. /// 循环值
  374. /// </summary>
  375. [Description("循环值")]
  376. [Nullable(true)]
  377. [DataLength(22)]
  378. public decimal? LoopValue
  379. {
  380. get { return loopValue; }
  381. set { loopValue = value; }
  382. }
  383. /// <summary>
  384. /// ORD_LN_PK(ORD_PK+三位流失号)
  385. /// </summary>
  386. [Description("ORD_LN_PK(ORD_PK+三位流失号)")]
  387. [Nullable(true)]
  388. [DataLength(40)]
  389. public string OrdLnPk
  390. {
  391. get { return ordLnPk; }
  392. set { ordLnPk = value; }
  393. }
  394. /// <summary>
  395. /// 序号
  396. /// </summary>
  397. [Description("序号")]
  398. [Nullable(true)]
  399. [DataLength(22)]
  400. public decimal? CraftSeq
  401. {
  402. get { return craftSeq; }
  403. set { craftSeq = value; }
  404. }
  405. }
  406. }