SpecObject.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. namespace Core.StlMes.Client.Qcm.model
  2. {
  3. /// <summary>
  4. /// 公差标准表(主表)实体类
  5. /// </summary>
  6. public class SpecObject
  7. {
  8. //公差标准索引号
  9. private string sic;
  10. public string Sic
  11. {
  12. get { return sic; }
  13. set { sic = value; }
  14. }
  15. //产品规范码
  16. private string psc;
  17. public string Psc
  18. {
  19. get { return psc; }
  20. set { psc = value; }
  21. }
  22. //冶金规范码
  23. private string msc;
  24. public string Msc
  25. {
  26. get { return msc; }
  27. set { msc = value; }
  28. }
  29. //标准类型(G:国标/国际/协议,K:客户,N:内控)
  30. private string stdStyle;
  31. public string StdStyle
  32. {
  33. get { return stdStyle; }
  34. set { stdStyle = value; }
  35. }
  36. //标准代码
  37. private string stdCode;
  38. public string StdCode
  39. {
  40. get { return stdCode; }
  41. set { stdCode = value; }
  42. }
  43. //标准名称
  44. private string stdName;
  45. public string StdName
  46. {
  47. get { return stdName; }
  48. set { stdName = value; }
  49. }
  50. //适用工序代码(内控)
  51. private string processCode;
  52. public string ProcessCode
  53. {
  54. get { return processCode; }
  55. set { processCode = value; }
  56. }
  57. //适用工序名称(内控)
  58. private string processDesc;
  59. public string ProcessDesc
  60. {
  61. get { return processDesc; }
  62. set { processDesc = value; }
  63. }
  64. //扣型代码(集合)
  65. private string modelCode;
  66. public string ModelCode
  67. {
  68. get { return modelCode; }
  69. set { modelCode = value; }
  70. }
  71. //扣型描述(集合)
  72. private string modelDesc;
  73. public string ModelDesc
  74. {
  75. get { return modelDesc; }
  76. set { modelDesc = value; }
  77. }
  78. ////标准备注
  79. private string stdMemo;
  80. public string StdMemo
  81. {
  82. get { return stdMemo; }
  83. set { stdMemo = value; }
  84. }
  85. //创建人
  86. private string createName;
  87. public string CreateName
  88. {
  89. get { return createName; }
  90. set { createName = value; }
  91. }
  92. //创建时间
  93. private string createTime;
  94. public string CreateTime
  95. {
  96. get { return createTime; }
  97. set { createTime = value; }
  98. }
  99. //修改人
  100. private string updateName;
  101. public string UpdateName
  102. {
  103. get { return updateName; }
  104. set { updateName = value; }
  105. }
  106. //修改时间
  107. private string updateTime;
  108. public string UpdateTime
  109. {
  110. get { return updateTime; }
  111. set { updateTime = value; }
  112. }
  113. //删除人
  114. private string deleteName;
  115. public string DeleteName
  116. {
  117. get { return deleteName; }
  118. set { deleteName = value; }
  119. }
  120. //删除时间
  121. private string deleteTime;
  122. public string DeleteTime
  123. {
  124. get { return deleteTime; }
  125. set { deleteTime = value; }
  126. }
  127. //有效标志(1:有效,0:无效)
  128. private string validflag;
  129. public string Validflag
  130. {
  131. get { return validflag; }
  132. set { validflag = value; }
  133. }
  134. private string producHead;
  135. public string ProducHead
  136. {
  137. get { return producHead; }
  138. set { producHead = value; }
  139. }
  140. private string codeJg;
  141. /// <summary>
  142. /// 接箍码
  143. /// </summary>
  144. public string CodeJg
  145. {
  146. get { return codeJg; }
  147. set { codeJg = value; }
  148. }
  149. private string specialPath;
  150. public string SpecialPath
  151. {
  152. get { return specialPath; }
  153. set { specialPath = value; }
  154. }
  155. private string steelcodeNk = "";
  156. public string SteelcodeNk
  157. {
  158. get { return steelcodeNk; }
  159. set { steelcodeNk = value; }
  160. }
  161. private string steelnameNk = "";
  162. public string SteelnameNk
  163. {
  164. get { return steelnameNk; }
  165. set { steelnameNk = value; }
  166. }
  167. private string modelCodeNk = "";
  168. public string ModelCodeNk
  169. {
  170. get { return modelCodeNk; }
  171. set { modelCodeNk = value; }
  172. }
  173. private string modelDescNk = "";
  174. public string ModelDescNk
  175. {
  176. get { return modelDescNk; }
  177. set { modelDescNk = value; }
  178. }
  179. private string produccodeNk = "";
  180. public string ProduccodeNk
  181. {
  182. get { return produccodeNk; }
  183. set { produccodeNk = value; }
  184. }
  185. private string producnameNk = "";
  186. public string ProducnameNk
  187. {
  188. get { return producnameNk; }
  189. set { producnameNk = value; }
  190. }
  191. }
  192. }