RpKaoheItemquanzhongEntity.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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. using Newtonsoft.Json;
  8. using Newtonsoft.Json.Serialization;
  9. using Newtonsoft.Json.Converters;
  10. namespace com.steering.pss.kaohe.entity
  11. {
  12. /// <summary>
  13. /// 数据库表RP_KAOHE_ITEMQUANZHONG所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
  14. /// 作者:tgcx-test 时间:2018-03-15
  15. /// </summary>
  16. public class RpKaoheItemquanzhongEntity
  17. {
  18. /// <summary>
  19. /// ID
  20. /// </summary>
  21. private string itemId = "";
  22. /// <summary>
  23. /// 指标分类
  24. /// </summary>
  25. private string itemType = "";
  26. /// <summary>
  27. /// 指标名称
  28. /// </summary>
  29. private string itemName = "";
  30. /// <summary>
  31. /// 奖励金额
  32. /// </summary>
  33. private decimal? awardMoney = null;
  34. /// <summary>
  35. /// 特钢权重
  36. /// </summary>
  37. private decimal? tegang = null;
  38. /// <summary>
  39. /// 轧管权重
  40. /// </summary>
  41. private decimal? zhaguan = null;
  42. /// <summary>
  43. /// 管加工权重
  44. /// </summary>
  45. private decimal? gjg = null;
  46. /// <summary>
  47. /// 制造部权重
  48. /// </summary>
  49. private decimal? zhizaobu = null;
  50. /// <summary>
  51. /// 工艺管理部门权重
  52. /// </summary>
  53. private decimal? gyguanli = null;
  54. /// <summary>
  55. /// 钢研所权重
  56. /// </summary>
  57. private decimal? gangyansuo = null;
  58. /// <summary>
  59. /// 制造部权重
  60. /// </summary>
  61. private decimal? zhibaobu = null;
  62. /// <summary>
  63. /// 有效标志
  64. /// </summary>
  65. private string validflag = "";
  66. /// <summary>
  67. /// 创建日期
  68. /// </summary>
  69. private string createdate = "";
  70. /// <summary>
  71. /// 创建人
  72. /// </summary>
  73. private string createby = "";
  74. /// <summary>
  75. /// 修改日期
  76. /// </summary>
  77. private string updatedate = "";
  78. /// <summary>
  79. /// 修改人
  80. /// </summary>
  81. private string updateby = "";
  82. /// <summary>
  83. /// ID
  84. /// </summary>
  85. [Description("ID")]
  86. [JsonProperty("itemId")]
  87. public string ItemId
  88. {
  89. get { return itemId; }
  90. set { itemId = value; }
  91. }
  92. /// <summary>
  93. /// 指标分类
  94. /// </summary>
  95. [Description("指标分类")]
  96. [JsonProperty("itemType")]
  97. public string ItemType
  98. {
  99. get { return itemType; }
  100. set { itemType = value; }
  101. }
  102. /// <summary>
  103. /// 指标名称
  104. /// </summary>
  105. [Description("指标名称")]
  106. [JsonProperty("itemName")]
  107. public string ItemName
  108. {
  109. get { return itemName; }
  110. set { itemName = value; }
  111. }
  112. /// <summary>
  113. /// 奖励金额
  114. /// </summary>
  115. [Description("奖励金额")]
  116. [JsonProperty("awardMoney")]
  117. public decimal? AwardMoney
  118. {
  119. get { return awardMoney; }
  120. set { awardMoney = value; }
  121. }
  122. /// <summary>
  123. /// 特钢权重
  124. /// </summary>
  125. [Description("特钢权重")]
  126. [JsonProperty("tegang")]
  127. public decimal? Tegang
  128. {
  129. get { return tegang; }
  130. set { tegang = value; }
  131. }
  132. /// <summary>
  133. /// 轧管权重
  134. /// </summary>
  135. [Description("轧管权重")]
  136. [JsonProperty("zhaguan")]
  137. public decimal? Zhaguan
  138. {
  139. get { return zhaguan; }
  140. set { zhaguan = value; }
  141. }
  142. /// <summary>
  143. /// 管加工权重
  144. /// </summary>
  145. [Description("管加工权重")]
  146. [JsonProperty("gjg")]
  147. public decimal? Gjg
  148. {
  149. get { return gjg; }
  150. set { gjg = value; }
  151. }
  152. /// <summary>
  153. /// 制造部权重
  154. /// </summary>
  155. [Description("制造部权重")]
  156. [JsonProperty("zhizaobu")]
  157. public decimal? Zhizaobu
  158. {
  159. get { return zhizaobu; }
  160. set { zhizaobu = value; }
  161. }
  162. /// <summary>
  163. /// 工艺管理部门权重
  164. /// </summary>
  165. [Description("工艺管理部门权重")]
  166. [JsonProperty("gyguanli")]
  167. public decimal? Gyguanli
  168. {
  169. get { return gyguanli; }
  170. set { gyguanli = value; }
  171. }
  172. /// <summary>
  173. /// 钢研所权重
  174. /// </summary>
  175. [Description("钢研所权重")]
  176. [JsonProperty("gangyansuo")]
  177. public decimal? Gangyansuo
  178. {
  179. get { return gangyansuo; }
  180. set { gangyansuo = value; }
  181. }
  182. /// <summary>
  183. /// 质保部权重
  184. /// </summary>
  185. [Description("质保部权重")]
  186. [JsonProperty("zhibaobu")]
  187. public decimal? Zhibaobu
  188. {
  189. get { return zhibaobu; }
  190. set { zhibaobu = value; }
  191. }
  192. /// <summary>
  193. /// 有效标志
  194. /// </summary>
  195. [Description("有效标志")]
  196. [JsonProperty("validflag")]
  197. public string Validflag
  198. {
  199. get { return validflag; }
  200. set { validflag = value; }
  201. }
  202. /// <summary>
  203. /// 创建日期
  204. /// </summary>
  205. [Description("创建日期")]
  206. [JsonProperty("createdate")]
  207. public string Createdate
  208. {
  209. get { return createdate; }
  210. set { createdate = value; }
  211. }
  212. /// <summary>
  213. /// 创建人
  214. /// </summary>
  215. [Description("创建人")]
  216. [JsonProperty("createby")]
  217. public string Createby
  218. {
  219. get { return createby; }
  220. set { createby = value; }
  221. }
  222. /// <summary>
  223. /// 修改日期
  224. /// </summary>
  225. [Description("修改日期")]
  226. [JsonProperty("updatedate")]
  227. public string Updatedate
  228. {
  229. get { return updatedate; }
  230. set { updatedate = value; }
  231. }
  232. /// <summary>
  233. /// 修改人
  234. /// </summary>
  235. [Description("修改人")]
  236. [JsonProperty("updateby")]
  237. public string Updateby
  238. {
  239. get { return updateby; }
  240. set { updateby = value; }
  241. }
  242. }
  243. }