CraftOrdDesignStdEntity.cs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.ComponentModel;
  5. namespace Core.StlMes.Client.Judge.Models
  6. {
  7. /// <summary>
  8. /// 数据库表CRAFT_ORD_DESIGN_STD所对应的实体类(生成工具:代码生成工具1.0.0.0)
  9. /// 作者:tgcx-test 时间:2016-05-11
  10. /// </summary>
  11. public class CraftOrdDesignStdEntity
  12. {
  13. /// <summary>
  14. /// DESGIN_KEY
  15. /// </summary>
  16. private string desginKey = "";
  17. /// <summary>
  18. /// 成分标准索引号(CICN000001)
  19. /// </summary>
  20. private string cic = "";
  21. /// <summary>
  22. /// 材质标准索引号
  23. /// </summary>
  24. private string pic = "";
  25. /// <summary>
  26. /// 公差标准索引号
  27. /// </summary>
  28. private string sic = "";
  29. /// <summary>
  30. /// 探伤索引号
  31. /// </summary>
  32. private string dic = "";
  33. /// <summary>
  34. /// 水压索引码
  35. /// </summary>
  36. private string wic = "";
  37. /// <summary>
  38. /// 加工索引号
  39. /// </summary>
  40. private string gic = "";
  41. /// <summary>
  42. /// 熔炼成分套数
  43. /// </summary>
  44. private decimal? smeltingCnt = null;
  45. /// <summary>
  46. /// 成品成分套数
  47. /// </summary>
  48. private decimal? productCnt = null;
  49. /// <summary>
  50. /// 成分标准索引号(客户要求)
  51. /// </summary>
  52. private string cicN = "";
  53. /// <summary>
  54. /// 材质标准索引号(客户要求)
  55. /// </summary>
  56. private string picN = "";
  57. /// <summary>
  58. /// 公差标准索引号(客户要求)
  59. /// </summary>
  60. private string sicN = "";
  61. /// <summary>
  62. /// 探伤索引号(客户要求)
  63. /// </summary>
  64. private string dicN = "";
  65. /// <summary>
  66. /// 水压索引码(客户要求)
  67. /// </summary>
  68. private string wicN = "";
  69. /// <summary>
  70. /// 加工索引号(客户要求)
  71. /// </summary>
  72. private string gicN = "";
  73. /// <summary>
  74. /// 熔炼成分套数(客户要求)
  75. /// </summary>
  76. private decimal? smeltingCntN = null;
  77. /// <summary>
  78. /// 成品成分套数(客户要求)
  79. /// </summary>
  80. private decimal? productCntN = null;
  81. /// <summary>
  82. /// DESGIN_KEY
  83. /// </summary>
  84. [Description("DESGIN_KEY")]
  85. [Nullable(false)]
  86. [DataLength(40)]
  87. [JsonProperty("desginKey")]
  88. public string DesginKey
  89. {
  90. get { return desginKey; }
  91. set { desginKey = value; }
  92. }
  93. /// <summary>
  94. /// 成分标准索引号(CICN000001)
  95. /// </summary>
  96. [Description("成分标准索引号(CICN000001)")]
  97. [Nullable(true)]
  98. [DataLength(10)]
  99. [JsonProperty("cic")]
  100. public string Cic
  101. {
  102. get { return cic; }
  103. set { cic = value; }
  104. }
  105. /// <summary>
  106. /// 材质标准索引号
  107. /// </summary>
  108. [Description("材质标准索引号")]
  109. [Nullable(true)]
  110. [DataLength(20)]
  111. [JsonProperty("pic")]
  112. public string Pic
  113. {
  114. get { return pic; }
  115. set { pic = value; }
  116. }
  117. /// <summary>
  118. /// 公差标准索引号
  119. /// </summary>
  120. [Description("公差标准索引号")]
  121. [Nullable(true)]
  122. [DataLength(20)]
  123. [JsonProperty("sic")]
  124. public string Sic
  125. {
  126. get { return sic; }
  127. set { sic = value; }
  128. }
  129. /// <summary>
  130. /// 探伤索引号
  131. /// </summary>
  132. [Description("探伤索引号")]
  133. [Nullable(true)]
  134. [DataLength(20)]
  135. [JsonProperty("dic")]
  136. public string Dic
  137. {
  138. get { return dic; }
  139. set { dic = value; }
  140. }
  141. /// <summary>
  142. /// 水压索引码
  143. /// </summary>
  144. [Description("水压索引码")]
  145. [Nullable(true)]
  146. [DataLength(20)]
  147. [JsonProperty("wic")]
  148. public string Wic
  149. {
  150. get { return wic; }
  151. set { wic = value; }
  152. }
  153. /// <summary>
  154. /// 加工索引号
  155. /// </summary>
  156. [Description("加工索引号")]
  157. [Nullable(true)]
  158. [DataLength(20)]
  159. [JsonProperty("gic")]
  160. public string Gic
  161. {
  162. get { return gic; }
  163. set { gic = value; }
  164. }
  165. /// <summary>
  166. /// 熔炼成分套数
  167. /// </summary>
  168. [Description("熔炼成分套数")]
  169. [Nullable(true)]
  170. [DataLength(2)]
  171. [JsonProperty("smeltingCnt")]
  172. public decimal? SmeltingCnt
  173. {
  174. get { return smeltingCnt; }
  175. set { smeltingCnt = value; }
  176. }
  177. /// <summary>
  178. /// 成品成分套数
  179. /// </summary>
  180. [Description("成品成分套数")]
  181. [Nullable(true)]
  182. [DataLength(2)]
  183. [JsonProperty("productCnt")]
  184. public decimal? ProductCnt
  185. {
  186. get { return productCnt; }
  187. set { productCnt = value; }
  188. }
  189. /// <summary>
  190. /// 成分标准索引号(客户要求)
  191. /// </summary>
  192. [Description("成分标准索引号(客户要求)")]
  193. [Nullable(true)]
  194. [DataLength(10)]
  195. [JsonProperty("cicN")]
  196. public string CicN
  197. {
  198. get { return cicN; }
  199. set { cicN = value; }
  200. }
  201. /// <summary>
  202. /// 材质标准索引号(客户要求)
  203. /// </summary>
  204. [Description("材质标准索引号(客户要求)")]
  205. [Nullable(true)]
  206. [DataLength(20)]
  207. [JsonProperty("picN")]
  208. public string PicN
  209. {
  210. get { return picN; }
  211. set { picN = value; }
  212. }
  213. /// <summary>
  214. /// 公差标准索引号(客户要求)
  215. /// </summary>
  216. [Description("公差标准索引号(客户要求)")]
  217. [Nullable(true)]
  218. [DataLength(20)]
  219. [JsonProperty("sicN")]
  220. public string SicN
  221. {
  222. get { return sicN; }
  223. set { sicN = value; }
  224. }
  225. /// <summary>
  226. /// 探伤索引号(客户要求)
  227. /// </summary>
  228. [Description("探伤索引号(客户要求)")]
  229. [Nullable(true)]
  230. [DataLength(20)]
  231. [JsonProperty("dicN")]
  232. public string DicN
  233. {
  234. get { return dicN; }
  235. set { dicN = value; }
  236. }
  237. /// <summary>
  238. /// 水压索引码(客户要求)
  239. /// </summary>
  240. [Description("水压索引码(客户要求)")]
  241. [Nullable(true)]
  242. [DataLength(20)]
  243. [JsonProperty("wicN")]
  244. public string WicN
  245. {
  246. get { return wicN; }
  247. set { wicN = value; }
  248. }
  249. /// <summary>
  250. /// 加工索引号(客户要求)
  251. /// </summary>
  252. [Description("加工索引号(客户要求)")]
  253. [Nullable(true)]
  254. [DataLength(20)]
  255. [JsonProperty("gicN")]
  256. public string GicN
  257. {
  258. get { return gicN; }
  259. set { gicN = value; }
  260. }
  261. /// <summary>
  262. /// 熔炼成分套数(客户要求)
  263. /// </summary>
  264. [Description("熔炼成分套数(客户要求)")]
  265. [Nullable(true)]
  266. [DataLength(2)]
  267. [JsonProperty("smeltingCntN")]
  268. public decimal? SmeltingCntN
  269. {
  270. get { return smeltingCntN; }
  271. set { smeltingCntN = value; }
  272. }
  273. /// <summary>
  274. /// 成品成分套数(客户要求)
  275. /// </summary>
  276. [Description("成品成分套数(客户要求)")]
  277. [Nullable(true)]
  278. [DataLength(2)]
  279. [JsonProperty("productCntN")]
  280. public decimal? ProductCntN
  281. {
  282. get { return productCntN; }
  283. set { productCntN = value; }
  284. }
  285. }
  286. }