ComMscPhySplineEntity.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.ComponentModel;
  5. namespace Core.StlMes.Client.Qcm.model
  6. {
  7. /// <summary>
  8. /// 数据库表COM_MSC_PHY_SPLINE所对应的实体类(生成工具:代码生成工具1.0.0.0)
  9. /// 作者:Chenxi-PC2 时间:2016-04-21
  10. /// </summary>
  11. public class ComMscPhySplineEntity
  12. {
  13. /// <summary>
  14. /// 材质标准索引号
  15. /// </summary>
  16. private string pic = "";
  17. /// <summary>
  18. /// 取样码
  19. /// </summary>
  20. private string phyCodeMin = "";
  21. /// <summary>
  22. /// 取样码描述
  23. /// </summary>
  24. private string phyNameMin = "";
  25. /// <summary>
  26. /// 试样索引号(COM_BASE_SPLINE)
  27. /// </summary>
  28. private string eic = "";
  29. /// <summary>
  30. /// 创建人
  31. /// </summary>
  32. private string createName = "";
  33. /// <summary>
  34. /// 创建时间
  35. /// </summary>
  36. private string createTime = "";
  37. /// <summary>
  38. /// 修改人
  39. /// </summary>
  40. private string updateName = "";
  41. /// <summary>
  42. /// 修改时间
  43. /// </summary>
  44. private string updateTime = "";
  45. /// <summary>
  46. /// 删除人
  47. /// </summary>
  48. private string deleteName = "";
  49. /// <summary>
  50. /// 删除时间
  51. /// </summary>
  52. private string deleteTime = "";
  53. /// <summary>
  54. /// 有效标志(1:有效,0:无效)
  55. /// </summary>
  56. private string validflag = "";
  57. /// <summary>
  58. /// 备注
  59. /// </summary>
  60. private string memo = "";
  61. private string sampleKey = "";
  62. [JsonProperty("sampleKey")]
  63. public string SampleKey
  64. {
  65. get { return sampleKey; }
  66. set { sampleKey = value; }
  67. }
  68. private string sampleKeyDesc = "";
  69. [JsonProperty("sampleKeyDesc")]
  70. public string SampleKeyDesc
  71. {
  72. get { return sampleKeyDesc; }
  73. set { sampleKeyDesc = value; }
  74. }
  75. private string itemCodeF = "";
  76. [JsonProperty("itemCodeF")]
  77. public string ItemCodeF
  78. {
  79. get { return itemCodeF; }
  80. set { itemCodeF = value; }
  81. }
  82. private string itemCodeC = "";
  83. [JsonProperty("itemCodeC")]
  84. public string ItemCodeC
  85. {
  86. get { return itemCodeC; }
  87. set { itemCodeC = value; }
  88. }
  89. private string itemCodeW = "";
  90. [JsonProperty("itemCodeW")]
  91. public string ItemCodeW
  92. {
  93. get { return itemCodeW; }
  94. set { itemCodeW = value; }
  95. }
  96. private string itemNameF = "";
  97. [JsonProperty("itemNameF")]
  98. public string ItemNameF
  99. {
  100. get { return itemNameF; }
  101. set { itemNameF = value; }
  102. }
  103. private string itemNameW = "";
  104. [JsonProperty("itemNameW")]
  105. public string ItemNameW
  106. {
  107. get { return itemNameW; }
  108. set { itemNameW = value; }
  109. }
  110. private string itemNameC = "";
  111. [JsonProperty("itemNameC")]
  112. public string ItemNameC
  113. {
  114. get { return itemNameC; }
  115. set { itemNameC = value; }
  116. }
  117. /// <summary>
  118. /// 材质标准索引号
  119. /// </summary>
  120. [Description("材质标准索引号")]
  121. [Nullable(false)]
  122. [DataLength(20)]
  123. [JsonProperty("pic")]
  124. public string Pic
  125. {
  126. get { return pic; }
  127. set { pic = value; }
  128. }
  129. /// <summary>
  130. /// 取样码
  131. /// </summary>
  132. [Description("取样码")]
  133. [Nullable(false)]
  134. [DataLength(5)]
  135. [JsonProperty("phyCodeMin")]
  136. public string PhyCodeMin
  137. {
  138. get { return phyCodeMin; }
  139. set { phyCodeMin = value; }
  140. }
  141. /// <summary>
  142. /// 取样码描述
  143. /// </summary>
  144. [Description("取样码描述")]
  145. [Nullable(true)]
  146. [DataLength(100)]
  147. [JsonProperty("phyNameMin")]
  148. public string PhyNameMin
  149. {
  150. get { return phyNameMin; }
  151. set { phyNameMin = value; }
  152. }
  153. /// <summary>
  154. /// 试样索引号(COM_BASE_SPLINE)
  155. /// </summary>
  156. [Description("试样索引号(COM_BASE_SPLINE)")]
  157. [Nullable(false)]
  158. [DataLength(8)]
  159. [JsonProperty("eic")]
  160. public string Eic
  161. {
  162. get { return eic; }
  163. set { eic = value; }
  164. }
  165. /// <summary>
  166. /// 创建人
  167. /// </summary>
  168. [Description("创建人")]
  169. [Nullable(true)]
  170. [DataLength(20)]
  171. [JsonProperty("createName")]
  172. public string CreateName
  173. {
  174. get { return createName; }
  175. set { createName = value; }
  176. }
  177. /// <summary>
  178. /// 创建时间
  179. /// </summary>
  180. [Description("创建时间")]
  181. [Nullable(true)]
  182. [JsonProperty("createTime")]
  183. public string CreateTime
  184. {
  185. get { return createTime; }
  186. set { createTime = value; }
  187. }
  188. /// <summary>
  189. /// 修改人
  190. /// </summary>
  191. [Description("修改人")]
  192. [Nullable(true)]
  193. [DataLength(20)]
  194. [JsonProperty("updateName")]
  195. public string UpdateName
  196. {
  197. get { return updateName; }
  198. set { updateName = value; }
  199. }
  200. /// <summary>
  201. /// 修改时间
  202. /// </summary>
  203. [Description("修改时间")]
  204. [Nullable(true)]
  205. [JsonProperty("updateTime")]
  206. public string UpdateTime
  207. {
  208. get { return updateTime; }
  209. set { updateTime = value; }
  210. }
  211. /// <summary>
  212. /// 删除人
  213. /// </summary>
  214. [Description("删除人")]
  215. [Nullable(true)]
  216. [DataLength(20)]
  217. [JsonProperty("deleteName")]
  218. public string DeleteName
  219. {
  220. get { return deleteName; }
  221. set { deleteName = value; }
  222. }
  223. /// <summary>
  224. /// 删除时间
  225. /// </summary>
  226. [Description("删除时间")]
  227. [Nullable(true)]
  228. [JsonProperty("deleteTime")]
  229. public string DeleteTime
  230. {
  231. get { return deleteTime; }
  232. set { deleteTime = value; }
  233. }
  234. /// <summary>
  235. /// 有效标志(1:有效,0:无效)
  236. /// </summary>
  237. [Description("有效标志(1:有效,0:无效)")]
  238. [Nullable(false)]
  239. [DataLength(1)]
  240. [JsonProperty("validflag")]
  241. public string Validflag
  242. {
  243. get { return validflag; }
  244. set { validflag = value; }
  245. }
  246. /// <summary>
  247. /// 备注
  248. /// </summary>
  249. [Description("备注")]
  250. [Nullable(true)]
  251. [DataLength(500)]
  252. [JsonProperty("memo")]
  253. public string Memo
  254. {
  255. get { return memo; }
  256. set { memo = value; }
  257. }
  258. }
  259. }