SlmOrdDesignStdSicEntity.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.SaleOrder
  8. {
  9. /// <summary>
  10. /// 数据库表SLM_ORD_DESIGN_STD_SIC所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:Chenxi-PC2 时间:2015-09-17
  12. /// </summary>
  13. public class SlmOrdDesignStdSicEntity
  14. {
  15. /// <summary>
  16. /// DESGIN_KEY
  17. /// </summary>
  18. private string desginKey = "";
  19. /// <summary>
  20. /// 公差标准索引号
  21. /// </summary>
  22. private string sic = "";
  23. /// <summary>
  24. /// 协议或Alpha代码(用途码)
  25. /// </summary>
  26. private string useCode = "";
  27. /// <summary>
  28. /// 协议或Alpha描述(用途描述)
  29. /// </summary>
  30. private string useDesc = "";
  31. /// <summary>
  32. /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准)
  33. /// </summary>
  34. private string speclFl = "";
  35. /// <summary>
  36. /// 序号
  37. /// </summary>
  38. private decimal? indexSeq = null;
  39. /// <summary>
  40. /// 公差项代码(主项)(4040)
  41. /// </summary>
  42. private string biasCode = "";
  43. /// <summary>
  44. /// 公差项名称(主项)
  45. /// </summary>
  46. private string biasName = "";
  47. /// <summary>
  48. /// 精度等级(4041)
  49. /// </summary>
  50. private string lv = "";
  51. /// <summary>
  52. /// 公差约束项一代码(4003)
  53. /// </summary>
  54. private string biasCodeZ = "";
  55. /// <summary>
  56. /// 公差约束项一名称
  57. /// </summary>
  58. private string biasNameZ = "";
  59. /// <summary>
  60. /// 公差约束项一下限符号
  61. /// </summary>
  62. private string zminSign = "";
  63. /// <summary>
  64. /// 公差约束项一下限值
  65. /// </summary>
  66. private string zmin = "";
  67. /// <summary>
  68. /// 公差约束项一上限符号
  69. /// </summary>
  70. private string zmaxSign = "";
  71. /// <summary>
  72. /// 公差约束项一上限值
  73. /// </summary>
  74. private string zmax = "";
  75. /// <summary>
  76. /// 公差约束项二代码(4003)
  77. /// </summary>
  78. private string biasCodeC = "";
  79. /// <summary>
  80. /// 公差约束项二名称
  81. /// </summary>
  82. private string biasNameC = "";
  83. /// <summary>
  84. /// 公差约束项二下限符号
  85. /// </summary>
  86. private string cminSign = "";
  87. /// <summary>
  88. /// 公差约束项二下限值
  89. /// </summary>
  90. private string cmin = "";
  91. /// <summary>
  92. /// 公差约束项二上限符号
  93. /// </summary>
  94. private string cmaxSign = "";
  95. /// <summary>
  96. /// 公差约束项二上限值
  97. /// </summary>
  98. private string cmax = "";
  99. /// <summary>
  100. /// 公差约束项三代码(4003)
  101. /// </summary>
  102. private string biasCodeS = "";
  103. /// <summary>
  104. /// 公差约束项三名称
  105. /// </summary>
  106. private string biasNameS = "";
  107. /// <summary>
  108. /// 公差约束项三下限符号
  109. /// </summary>
  110. private string sminSign = "";
  111. /// <summary>
  112. /// 公差约束项三下限值
  113. /// </summary>
  114. private string smin = "";
  115. /// <summary>
  116. /// 公差约束项三上限符号
  117. /// </summary>
  118. private string smaxSign = "";
  119. /// <summary>
  120. /// 公差约束项三上限值
  121. /// </summary>
  122. private string smax = "";
  123. /// <summary>
  124. /// 是否必检项(1:是,0:否)
  125. /// </summary>
  126. private string ischeck = "";
  127. /// <summary>
  128. /// 标准负值(mm)
  129. /// </summary>
  130. private string stdMinVal = "";
  131. /// <summary>
  132. /// 标准正值(mm)
  133. /// </summary>
  134. private string stdMaxVal = "";
  135. /// <summary>
  136. /// 标准负值(in)
  137. /// </summary>
  138. private string stdMinIn = "";
  139. /// <summary>
  140. /// 标准正值(in)
  141. /// </summary>
  142. private string stdMaxIn = "";
  143. /// <summary>
  144. /// 标准负值(%)
  145. /// </summary>
  146. private string stdMinPercent = "";
  147. /// <summary>
  148. /// 标准正值(%)
  149. /// </summary>
  150. private string stdMaxPercent = "";
  151. /// <summary>
  152. /// 标准公式负值(mm)
  153. /// </summary>
  154. private string stdMinFormula = "";
  155. /// <summary>
  156. /// 标准公式正值(mm)
  157. /// </summary>
  158. private string stdMaxFormula = "";
  159. /// <summary>
  160. /// 取小值
  161. /// </summary>
  162. private string stdMinFormulaV = "";
  163. /// <summary>
  164. /// 取大值
  165. /// </summary>
  166. private string stdMaxFormulaV = "";
  167. /// <summary>
  168. /// 标准备注
  169. /// </summary>
  170. private string stdmemo = "";
  171. /// <summary>
  172. /// DESGIN_KEY
  173. /// </summary>
  174. [Description("DESGIN_KEY")]
  175. [Nullable(false)]
  176. [DataLength(40)]
  177. public string DesginKey
  178. {
  179. get { return desginKey; }
  180. set { desginKey = value; }
  181. }
  182. /// <summary>
  183. /// 公差标准索引号
  184. /// </summary>
  185. [Description("公差标准索引号")]
  186. [Nullable(false)]
  187. [DataLength(20)]
  188. public string Sic
  189. {
  190. get { return sic; }
  191. set { sic = value; }
  192. }
  193. /// <summary>
  194. /// 协议或Alpha代码(用途码)
  195. /// </summary>
  196. [Description("用途码")]
  197. [Nullable(true)]
  198. [DataLength(20)]
  199. public string UseCode
  200. {
  201. get { return useCode; }
  202. set { useCode = value; }
  203. }
  204. /// <summary>
  205. /// 协议或Alpha描述(用途描述)
  206. /// </summary>
  207. [Description("用途描述")]
  208. [Nullable(true)]
  209. [DataLength(100)]
  210. public string UseDesc
  211. {
  212. get { return useDesc; }
  213. set { useDesc = value; }
  214. }
  215. /// <summary>
  216. /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准)
  217. /// </summary>
  218. [Description("是否特殊要求")]
  219. [Nullable(false)]
  220. [DataLength(1)]
  221. public string SpeclFl
  222. {
  223. get { return speclFl; }
  224. set { speclFl = value; }
  225. }
  226. /// <summary>
  227. /// 序号
  228. /// </summary>
  229. [Description("序号")]
  230. [Nullable(false)]
  231. [DataLength(22)]
  232. public decimal? IndexSeq
  233. {
  234. get { return indexSeq; }
  235. set { indexSeq = value; }
  236. }
  237. /// <summary>
  238. /// 公差项代码(主项)(4040)
  239. /// </summary>
  240. [Description("公差项代码(主项)")]
  241. [Nullable(false)]
  242. [DataLength(20)]
  243. public string BiasCode
  244. {
  245. get { return biasCode; }
  246. set { biasCode = value; }
  247. }
  248. /// <summary>
  249. /// 公差项名称(主项)
  250. /// </summary>
  251. [Description("公差项")]
  252. [Nullable(true)]
  253. [DataLength(100)]
  254. public string BiasName
  255. {
  256. get { return biasName; }
  257. set { biasName = value; }
  258. }
  259. /// <summary>
  260. /// 精度等级(4041)
  261. /// </summary>
  262. [Description("精度等级")]
  263. [Nullable(true)]
  264. [DataLength(20)]
  265. public string Lv
  266. {
  267. get { return lv; }
  268. set { lv = value; }
  269. }
  270. /// <summary>
  271. /// 公差约束项一代码(4003)
  272. /// </summary>
  273. [Description("公差约束项一")]
  274. [Nullable(true)]
  275. [DataLength(20)]
  276. public string BiasCodeZ
  277. {
  278. get { return biasCodeZ; }
  279. set { biasCodeZ = value; }
  280. }
  281. /// <summary>
  282. /// 公差约束项一名称
  283. /// </summary>
  284. [Description("公差约束项")]
  285. [Nullable(true)]
  286. [DataLength(100)]
  287. public string BiasNameZ
  288. {
  289. get { return biasNameZ; }
  290. set { biasNameZ = value; }
  291. }
  292. /// <summary>
  293. /// 公差约束项一下限符号
  294. /// </summary>
  295. [Description("下限符号")]
  296. [Nullable(true)]
  297. [DataLength(2)]
  298. public string ZminSign
  299. {
  300. get { return zminSign; }
  301. set { zminSign = value; }
  302. }
  303. /// <summary>
  304. /// 公差约束项一下限值
  305. /// </summary>
  306. [Description("下限值")]
  307. [Nullable(true)]
  308. [DataLength(10)]
  309. public string Zmin
  310. {
  311. get { return zmin; }
  312. set { zmin = value; }
  313. }
  314. /// <summary>
  315. /// 公差约束项一上限符号
  316. /// </summary>
  317. [Description("上限符号")]
  318. [Nullable(true)]
  319. [DataLength(2)]
  320. public string ZmaxSign
  321. {
  322. get { return zmaxSign; }
  323. set { zmaxSign = value; }
  324. }
  325. /// <summary>
  326. /// 公差约束项一上限值
  327. /// </summary>
  328. [Description("上限值")]
  329. [Nullable(true)]
  330. [DataLength(10)]
  331. public string Zmax
  332. {
  333. get { return zmax; }
  334. set { zmax = value; }
  335. }
  336. /// <summary>
  337. /// 公差约束项二代码(4003)
  338. /// </summary>
  339. [Description("公差约束项二代码")]
  340. [Nullable(true)]
  341. [DataLength(20)]
  342. public string BiasCodeC
  343. {
  344. get { return biasCodeC; }
  345. set { biasCodeC = value; }
  346. }
  347. /// <summary>
  348. /// 公差约束项二名称
  349. /// </summary>
  350. [Description("公差约束项")]
  351. [Nullable(true)]
  352. [DataLength(100)]
  353. public string BiasNameC
  354. {
  355. get { return biasNameC; }
  356. set { biasNameC = value; }
  357. }
  358. /// <summary>
  359. /// 公差约束项二下限符号
  360. /// </summary>
  361. [Description("下限符号")]
  362. [Nullable(true)]
  363. [DataLength(2)]
  364. public string CminSign
  365. {
  366. get { return cminSign; }
  367. set { cminSign = value; }
  368. }
  369. /// <summary>
  370. /// 公差约束项二下限值
  371. /// </summary>
  372. [Description("下限值")]
  373. [Nullable(true)]
  374. [DataLength(10)]
  375. public string Cmin
  376. {
  377. get { return cmin; }
  378. set { cmin = value; }
  379. }
  380. /// <summary>
  381. /// 公差约束项二上限符号
  382. /// </summary>
  383. [Description("上限符号")]
  384. [Nullable(true)]
  385. [DataLength(2)]
  386. public string CmaxSign
  387. {
  388. get { return cmaxSign; }
  389. set { cmaxSign = value; }
  390. }
  391. /// <summary>
  392. /// 公差约束项二上限值
  393. /// </summary>
  394. [Description("上限值")]
  395. [Nullable(true)]
  396. [DataLength(10)]
  397. public string Cmax
  398. {
  399. get { return cmax; }
  400. set { cmax = value; }
  401. }
  402. /// <summary>
  403. /// 公差约束项三代码(4003)
  404. /// </summary>
  405. [Description("公差约束项三代码")]
  406. [Nullable(true)]
  407. [DataLength(20)]
  408. public string BiasCodeS
  409. {
  410. get { return biasCodeS; }
  411. set { biasCodeS = value; }
  412. }
  413. /// <summary>
  414. /// 公差约束项三名称
  415. /// </summary>
  416. [Description("公差约束项")]
  417. [Nullable(true)]
  418. [DataLength(100)]
  419. public string BiasNameS
  420. {
  421. get { return biasNameS; }
  422. set { biasNameS = value; }
  423. }
  424. /// <summary>
  425. /// 公差约束项三下限符号
  426. /// </summary>
  427. [Description("下限符号")]
  428. [Nullable(true)]
  429. [DataLength(2)]
  430. public string SminSign
  431. {
  432. get { return sminSign; }
  433. set { sminSign = value; }
  434. }
  435. /// <summary>
  436. /// 公差约束项三下限值
  437. /// </summary>
  438. [Description("下限值")]
  439. [Nullable(true)]
  440. [DataLength(10)]
  441. public string Smin
  442. {
  443. get { return smin; }
  444. set { smin = value; }
  445. }
  446. /// <summary>
  447. /// 公差约束项三上限符号
  448. /// </summary>
  449. [Description("上限符号")]
  450. [Nullable(true)]
  451. [DataLength(2)]
  452. public string SmaxSign
  453. {
  454. get { return smaxSign; }
  455. set { smaxSign = value; }
  456. }
  457. /// <summary>
  458. /// 公差约束项三上限值
  459. /// </summary>
  460. [Description("上限值")]
  461. [Nullable(true)]
  462. [DataLength(10)]
  463. public string Smax
  464. {
  465. get { return smax; }
  466. set { smax = value; }
  467. }
  468. /// <summary>
  469. /// 是否必检项(1:是,0:否)
  470. /// </summary>
  471. [Description("是否必检项")]
  472. [Nullable(true)]
  473. [DataLength(1)]
  474. public string Ischeck
  475. {
  476. get { return ischeck; }
  477. set { ischeck = value; }
  478. }
  479. /// <summary>
  480. /// 标准负值(mm)
  481. /// </summary>
  482. [Description("下偏差值(mm)")]
  483. [Nullable(true)]
  484. [DataLength(10)]
  485. public string StdMinVal
  486. {
  487. get { return stdMinVal; }
  488. set { stdMinVal = value; }
  489. }
  490. /// <summary>
  491. /// 标准正值(mm)
  492. /// </summary>
  493. [Description("上偏差值(mm)")]
  494. [Nullable(true)]
  495. [DataLength(10)]
  496. public string StdMaxVal
  497. {
  498. get { return stdMaxVal; }
  499. set { stdMaxVal = value; }
  500. }
  501. /// <summary>
  502. /// 标准负值(in)
  503. /// </summary>
  504. [Description("标准负值(in)")]
  505. [Nullable(true)]
  506. [DataLength(10)]
  507. public string StdMinIn
  508. {
  509. get { return stdMinIn; }
  510. set { stdMinIn = value; }
  511. }
  512. /// <summary>
  513. /// 标准正值(in)
  514. /// </summary>
  515. [Description("标准正值(in) ")]
  516. [Nullable(true)]
  517. [DataLength(10)]
  518. public string StdMaxIn
  519. {
  520. get { return stdMaxIn; }
  521. set { stdMaxIn = value; }
  522. }
  523. /// <summary>
  524. /// 标准负值(%)
  525. /// </summary>
  526. [Description("下偏差值(%)")]
  527. [Nullable(true)]
  528. [DataLength(10)]
  529. public string StdMinPercent
  530. {
  531. get { return stdMinPercent; }
  532. set { stdMinPercent = value; }
  533. }
  534. /// <summary>
  535. /// 标准正值(%)
  536. /// </summary>
  537. [Description("上偏差值(%) ")]
  538. [Nullable(true)]
  539. [DataLength(10)]
  540. public string StdMaxPercent
  541. {
  542. get { return stdMaxPercent; }
  543. set { stdMaxPercent = value; }
  544. }
  545. /// <summary>
  546. /// 标准公式负值(mm)
  547. /// </summary>
  548. [Description("公式下偏差值(mm) ")]
  549. [Nullable(true)]
  550. [DataLength(100)]
  551. public string StdMinFormula
  552. {
  553. get { return stdMinFormula; }
  554. set { stdMinFormula = value; }
  555. }
  556. /// <summary>
  557. /// 标准公式正值(mm)
  558. /// </summary>
  559. [Description("公式上偏差值(mm)")]
  560. [Nullable(true)]
  561. [DataLength(100)]
  562. public string StdMaxFormula
  563. {
  564. get { return stdMaxFormula; }
  565. set { stdMaxFormula = value; }
  566. }
  567. /// <summary>
  568. /// 取小值
  569. /// </summary>
  570. [Description("取小值")]
  571. [Nullable(true)]
  572. [DataLength(1)]
  573. public string StdMinFormulaV
  574. {
  575. get { return stdMinFormulaV; }
  576. set { stdMinFormulaV = value; }
  577. }
  578. /// <summary>
  579. /// 取大值
  580. /// </summary>
  581. [Description("取大值")]
  582. [Nullable(true)]
  583. [DataLength(1)]
  584. public string StdMaxFormulaV
  585. {
  586. get { return stdMaxFormulaV; }
  587. set { stdMaxFormulaV = value; }
  588. }
  589. /// <summary>
  590. /// 标准备注
  591. /// </summary>
  592. [Description("标准备注")]
  593. [Nullable(true)]
  594. [DataLength(200)]
  595. public string Stdmemo
  596. {
  597. get { return stdmemo; }
  598. set { stdmemo = value; }
  599. }
  600. }
  601. }