CraftAutoPeopleEntity.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Linq;
  7. using System.Text;
  8. namespace Core.StlMes.Client.SaleOrder
  9. {
  10. /// <summary>
  11. /// 数据库表CRAFT_AUTO_PEOPLE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
  12. /// 作者:tgcx-test 时间:2017-02-24
  13. /// </summary>
  14. public class CraftAutoPeopleEntity
  15. {
  16. /// <summary>
  17. /// 主键
  18. /// </summary>
  19. private decimal? pk = null;
  20. /// <summary>
  21. /// 管理科室
  22. /// </summary>
  23. private string unitCode = "";
  24. /// <summary>
  25. /// 科室审核人
  26. /// </summary>
  27. private string auditCode = "";
  28. /// <summary>
  29. /// 相关科室审核人
  30. /// </summary>
  31. private string auditCode1 = "";
  32. /// <summary>
  33. /// 审批
  34. /// </summary>
  35. private string approveCode = "";
  36. /// <summary>
  37. /// 批准
  38. /// </summary>
  39. private string approveCode1 = "";
  40. /// <summary>
  41. /// 创建人
  42. /// </summary>
  43. private string createName = "";
  44. /// <summary>
  45. /// 创建时间
  46. /// </summary>
  47. private string createTime = "";
  48. /// <summary>
  49. /// 修改人
  50. /// </summary>
  51. private string updateName = "";
  52. /// <summary>
  53. /// 修改时间
  54. /// </summary>
  55. private string updateTime = "";
  56. private string unitDesc = "";
  57. private bool? autoFlag = null;
  58. /// <summary>
  59. /// 管理科室
  60. /// </summary>
  61. [Description("MSC管理科室")]
  62. [JsonProperty("unitDesc")]
  63. public string UnitDesc
  64. {
  65. get { return unitDesc; }
  66. set { unitDesc = value; }
  67. }
  68. private string auditDesc = "";
  69. /// <summary>
  70. /// 科室审核人
  71. /// </summary>
  72. [Description("科室审核人")]
  73. [JsonProperty("auditDesc")]
  74. public string AuditDesc
  75. {
  76. get { return auditDesc; }
  77. set { auditDesc = value; }
  78. }
  79. private string auditDesc1 = "";
  80. /// <summary>
  81. /// 相关科室审核人
  82. /// </summary>
  83. [Description("相关科室审核人")]
  84. [JsonProperty("auditDesc1")]
  85. public string AuditDesc1
  86. {
  87. get { return auditDesc1; }
  88. set { auditDesc1 = value; }
  89. }
  90. private string approveDesc = "";
  91. /// <summary>
  92. /// 审批人
  93. /// </summary>
  94. [Description("审批人")]
  95. [JsonProperty("approveDesc")]
  96. public string ApproveDesc
  97. {
  98. get { return approveDesc; }
  99. set { approveDesc = value; }
  100. }
  101. private string approveDesc1 = "";
  102. /// <summary>
  103. /// 批准人
  104. /// </summary>
  105. [Description("批准人")]
  106. [JsonProperty("approveDesc1")]
  107. public string ApproveDesc1
  108. {
  109. get { return approveDesc1; }
  110. set { approveDesc1 = value; }
  111. }
  112. /// <summary>
  113. /// 主键
  114. /// </summary>
  115. [Description("主键")]
  116. [Nullable(false)]
  117. [DataLength(22)]
  118. [JsonProperty("pk")]
  119. public decimal? Pk
  120. {
  121. get { return pk; }
  122. set { pk = value; }
  123. }
  124. /// <summary>
  125. /// 管理科室
  126. /// </summary>
  127. [Description("管理科室")]
  128. [Nullable(true)]
  129. [DataLength(10)]
  130. [JsonProperty("unitCode")]
  131. public string UnitCode
  132. {
  133. get { return unitCode; }
  134. set { unitCode = value; }
  135. }
  136. /// <summary>
  137. /// 科室审核人
  138. /// </summary>
  139. [Description("科室审核人")]
  140. [Nullable(true)]
  141. [DataLength(10)]
  142. [JsonProperty("auditCode")]
  143. public string AuditCode
  144. {
  145. get { return auditCode; }
  146. set { auditCode = value; }
  147. }
  148. /// <summary>
  149. /// 相关科室审核人
  150. /// </summary>
  151. [Description("相关科室审核人")]
  152. [Nullable(true)]
  153. [DataLength(10)]
  154. [JsonProperty("auditCode1")]
  155. public string AuditCode1
  156. {
  157. get { return auditCode1; }
  158. set { auditCode1 = value; }
  159. }
  160. /// <summary>
  161. /// 审批
  162. /// </summary>
  163. [Description("审批")]
  164. [Nullable(true)]
  165. [DataLength(10)]
  166. [JsonProperty("approveCode")]
  167. public string ApproveCode
  168. {
  169. get { return approveCode; }
  170. set { approveCode = value; }
  171. }
  172. /// <summary>
  173. /// 批准
  174. /// </summary>
  175. [Description("批准")]
  176. [Nullable(true)]
  177. [DataLength(10)]
  178. [JsonProperty("approveCode1")]
  179. public string ApproveCode1
  180. {
  181. get { return approveCode1; }
  182. set { approveCode1 = value; }
  183. }
  184. /// <summary>
  185. /// 创建人
  186. /// </summary>
  187. [Description("创建人")]
  188. [Nullable(true)]
  189. [DataLength(20)]
  190. [JsonProperty("createName")]
  191. public string CreateName
  192. {
  193. get { return createName; }
  194. set { createName = value; }
  195. }
  196. /// <summary>
  197. /// 创建时间
  198. /// </summary>
  199. [Description("创建时间")]
  200. [Nullable(true)]
  201. [JsonProperty("createTime")]
  202. public string CreateTime
  203. {
  204. get { return createTime; }
  205. set { createTime = value; }
  206. }
  207. /// <summary>
  208. /// 修改人
  209. /// </summary>
  210. [Description("修改人")]
  211. [Nullable(true)]
  212. [DataLength(20)]
  213. [JsonProperty("updateName")]
  214. public string UpdateName
  215. {
  216. get { return updateName; }
  217. set { updateName = value; }
  218. }
  219. /// <summary>
  220. /// 修改时间
  221. /// </summary>
  222. [Description("修改时间")]
  223. [Nullable(true)]
  224. [JsonProperty("updateTime")]
  225. public string UpdateTime
  226. {
  227. get { return updateTime; }
  228. set { updateTime = value; }
  229. }
  230. /// <summary>
  231. /// 自动审核
  232. /// </summary>
  233. [Description("自动审核")]
  234. [Nullable(true)]
  235. [JsonProperty("autoFlag")]
  236. public bool? AutoFlag
  237. {
  238. get { return autoFlag; }
  239. set { autoFlag = value; }
  240. }
  241. }
  242. }