SlmOrdDesignSicDiffEntity.cs 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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.SaleOrder
  8. {/// <summary>
  9. /// 数据库表SLM_ORD_DESIGN_SIC_DIFF所对应的实体类(生成工具:代码生成工具3.0)
  10. /// 作者:DESKTOP-DG6B81Q 时间:2015-12-26
  11. /// </summary>
  12. public class SlmOrdDesignSicDiffEntity
  13. {
  14. /// <summary>
  15. /// 质量主键
  16. /// </summary>
  17. private string designKey = "";
  18. /// <summary>
  19. /// 合同PK
  20. /// </summary>
  21. private string ordPk = "";
  22. /// <summary>
  23. /// 合同行PK
  24. /// </summary>
  25. private string ordLnPk = "";
  26. /// <summary>
  27. /// 索引号(标)
  28. /// </summary>
  29. private string sic = "";
  30. /// <summary>
  31. /// 索引号(客)
  32. /// </summary>
  33. private string sic1 = "";
  34. /// <summary>
  35. /// 材质检验项代码
  36. /// </summary>
  37. private string phyCode = "";
  38. /// <summary>
  39. /// 材质检验项名称
  40. /// </summary>
  41. private string phyName = "";
  42. /// <summary>
  43. /// 标准负值(mm)(标)
  44. /// </summary>
  45. private string stdMinVal = "";
  46. /// <summary>
  47. /// 标准正值(mm)(标)
  48. /// </summary>
  49. private string stdMaxVal = "";
  50. /// <summary>
  51. /// 标准负值(%)(标)
  52. /// </summary>
  53. private string stdMinPercent = "";
  54. /// <summary>
  55. /// 标准正值(%) (标)
  56. /// </summary>
  57. private string stdMaxPercent = "";
  58. /// <summary>
  59. /// 标准公式负值(mm) (标)
  60. /// </summary>
  61. private string stdMinFormula = "";
  62. /// <summary>
  63. /// 标准公式正值(mm)(标)
  64. /// </summary>
  65. private string stdMaxFormula = "";
  66. /// <summary>
  67. /// 标准负值(mm)(客)
  68. /// </summary>
  69. private string stdMinVal1 = "";
  70. /// <summary>
  71. /// 标准正值(mm)(客)
  72. /// </summary>
  73. private string stdMaxVal1 = "";
  74. /// <summary>
  75. /// 标准负值(%)(客)
  76. /// </summary>
  77. private string stdMinPercent1 = "";
  78. /// <summary>
  79. /// 标准正值(%) (客)
  80. /// </summary>
  81. private string stdMaxPercent1 = "";
  82. /// <summary>
  83. /// 标准公式负值(mm) (客)
  84. /// </summary>
  85. private string stdMinFormula1 = "";
  86. /// <summary>
  87. /// 标准公式正值(mm)(客)
  88. /// </summary>
  89. private string stdMaxFormula1 = "";
  90. /// <summary>
  91. /// 下偏差值
  92. /// </summary>
  93. private string diffValueMin = "";
  94. /// <summary>
  95. /// 上偏差值
  96. /// </summary>
  97. private string diffValueMax = "";
  98. /// <summary>
  99. /// 质量主键
  100. /// </summary>
  101. [Description("质量主键")]
  102. [Nullable(false)]
  103. [DataLength(40)]
  104. public string DesignKey
  105. {
  106. get { return designKey; }
  107. set { designKey = value; }
  108. }
  109. /// <summary>
  110. /// 合同PK
  111. /// </summary>
  112. [Description("合同PK")]
  113. [Nullable(false)]
  114. [DataLength(40)]
  115. public string OrdPk
  116. {
  117. get { return ordPk; }
  118. set { ordPk = value; }
  119. }
  120. /// <summary>
  121. /// 合同行PK
  122. /// </summary>
  123. [Description("合同行PK")]
  124. [Nullable(false)]
  125. [DataLength(40)]
  126. public string OrdLnPk
  127. {
  128. get { return ordLnPk; }
  129. set { ordLnPk = value; }
  130. }
  131. /// <summary>
  132. /// 索引号(标)
  133. /// </summary>
  134. [Description("索引号(标)")]
  135. [Nullable(true)]
  136. [DataLength(12)]
  137. public string Sic
  138. {
  139. get { return sic; }
  140. set { sic = value; }
  141. }
  142. /// <summary>
  143. /// 索引号(客)
  144. /// </summary>
  145. [Description("索引号(客)")]
  146. [Nullable(true)]
  147. [DataLength(12)]
  148. public string Sic1
  149. {
  150. get { return sic1; }
  151. set { sic1 = value; }
  152. }
  153. /// <summary>
  154. /// 材质检验项代码
  155. /// </summary>
  156. [Description("材质检验项代码")]
  157. [Nullable(true)]
  158. [DataLength(5)]
  159. public string PhyCode
  160. {
  161. get { return phyCode; }
  162. set { phyCode = value; }
  163. }
  164. /// <summary>
  165. /// 材质检验项名称
  166. /// </summary>
  167. [Description("材质检验项")]
  168. [Nullable(true)]
  169. [DataLength(100)]
  170. public string PhyName
  171. {
  172. get { return phyName; }
  173. set { phyName = value; }
  174. }
  175. /// <summary>
  176. /// 标准负值(mm)(标)
  177. /// </summary>
  178. [Description("标准负值(mm)")]
  179. [Nullable(true)]
  180. [DataLength(10)]
  181. public string StdMinVal
  182. {
  183. get { return stdMinVal; }
  184. set { stdMinVal = value; }
  185. }
  186. /// <summary>
  187. /// 标准正值(mm)(标)
  188. /// </summary>
  189. [Description("标准正值(mm)")]
  190. [Nullable(true)]
  191. [DataLength(10)]
  192. public string StdMaxVal
  193. {
  194. get { return stdMaxVal; }
  195. set { stdMaxVal = value; }
  196. }
  197. /// <summary>
  198. /// 标准负值(%)(标)
  199. /// </summary>
  200. [Description("标准负值(%)")]
  201. [Nullable(true)]
  202. [DataLength(10)]
  203. public string StdMinPercent
  204. {
  205. get { return stdMinPercent; }
  206. set { stdMinPercent = value; }
  207. }
  208. /// <summary>
  209. /// 标准正值(%) (标)
  210. /// </summary>
  211. [Description("标准正值(%)")]
  212. [Nullable(true)]
  213. [DataLength(10)]
  214. public string StdMaxPercent
  215. {
  216. get { return stdMaxPercent; }
  217. set { stdMaxPercent = value; }
  218. }
  219. /// <summary>
  220. /// 标准公式负值(mm) (标)
  221. /// </summary>
  222. [Description("标准公式负值(mm)")]
  223. [Nullable(true)]
  224. [DataLength(100)]
  225. public string StdMinFormula
  226. {
  227. get { return stdMinFormula; }
  228. set { stdMinFormula = value; }
  229. }
  230. /// <summary>
  231. /// 标准公式正值(mm)(标)
  232. /// </summary>
  233. [Description("标准公式正值(mm)")]
  234. [Nullable(true)]
  235. [DataLength(100)]
  236. public string StdMaxFormula
  237. {
  238. get { return stdMaxFormula; }
  239. set { stdMaxFormula = value; }
  240. }
  241. /// <summary>
  242. /// 标准负值(mm)(客)
  243. /// </summary>
  244. [Description("标准负值(mm)")]
  245. [Nullable(true)]
  246. [DataLength(10)]
  247. public string StdMinVal1
  248. {
  249. get { return stdMinVal1; }
  250. set { stdMinVal1 = value; }
  251. }
  252. /// <summary>
  253. /// 标准正值(mm)(客)
  254. /// </summary>
  255. [Description("标准正值(mm)")]
  256. [Nullable(true)]
  257. [DataLength(10)]
  258. public string StdMaxVal1
  259. {
  260. get { return stdMaxVal1; }
  261. set { stdMaxVal1 = value; }
  262. }
  263. /// <summary>
  264. /// 标准负值(%)(客)
  265. /// </summary>
  266. [Description("标准负值(%)")]
  267. [Nullable(true)]
  268. [DataLength(10)]
  269. public string StdMinPercent1
  270. {
  271. get { return stdMinPercent1; }
  272. set { stdMinPercent1 = value; }
  273. }
  274. /// <summary>
  275. /// 标准正值(%) (客)
  276. /// </summary>
  277. [Description("标准正值(%)")]
  278. [Nullable(true)]
  279. [DataLength(10)]
  280. public string StdMaxPercent1
  281. {
  282. get { return stdMaxPercent1; }
  283. set { stdMaxPercent1 = value; }
  284. }
  285. /// <summary>
  286. /// 标准公式负值(mm) (客)
  287. /// </summary>
  288. [Description("标准公式负值(mm)")]
  289. [Nullable(true)]
  290. [DataLength(100)]
  291. public string StdMinFormula1
  292. {
  293. get { return stdMinFormula1; }
  294. set { stdMinFormula1 = value; }
  295. }
  296. /// <summary>
  297. /// 标准公式正值(mm)(客)
  298. /// </summary>
  299. [Description("标准公式正值(mm)")]
  300. [Nullable(true)]
  301. [DataLength(100)]
  302. public string StdMaxFormula1
  303. {
  304. get { return stdMaxFormula1; }
  305. set { stdMaxFormula1 = value; }
  306. }
  307. /// <summary>
  308. /// 下偏差值
  309. /// </summary>
  310. [Description("下偏差值")]
  311. [Nullable(true)]
  312. [DataLength(10)]
  313. public string DiffValueMin
  314. {
  315. get { return diffValueMin; }
  316. set { diffValueMin = value; }
  317. }
  318. /// <summary>
  319. /// 上偏差值
  320. /// </summary>
  321. [Description("上偏差值")]
  322. [Nullable(true)]
  323. [DataLength(10)]
  324. public string DiffValueMax
  325. {
  326. get { return diffValueMax; }
  327. set { diffValueMax = value; }
  328. }
  329. }
  330. }