CostCalculationGtlEntity.cs 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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. namespace Core.StlMes.Client.PnCost.Models
  8. {
  9. /// <summary>
  10. /// 数据库表COST_CALCULATION_GTL所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:doubi-PC 时间:2016-11-18
  12. /// </summary>
  13. public class CostCalculationGtlEntity
  14. {
  15. /// <summary>
  16. /// 年月
  17. /// </summary>
  18. private string yearMonth = "";
  19. /// <summary>
  20. /// 铁水(t)
  21. /// </summary>
  22. private decimal? wlTs = null;
  23. /// <summary>
  24. /// 生铁(t)
  25. /// </summary>
  26. private decimal? wlSt = null;
  27. /// <summary>
  28. /// 废钢(t)
  29. /// </summary>
  30. private decimal? wlFg = null;
  31. /// <summary>
  32. /// 铁水采购单价(元)
  33. /// </summary>
  34. private decimal? wlTsCost = null;
  35. /// <summary>
  36. /// 生铁采购单价(元)
  37. /// </summary>
  38. private decimal? wlStCost = null;
  39. /// <summary>
  40. /// 废钢采购单价(元)
  41. /// </summary>
  42. private decimal? wlFgCost = null;
  43. /// <summary>
  44. /// 当前年月钢铁料总成本(元)
  45. /// </summary>
  46. private decimal? sumCost = null;
  47. /// <summary>
  48. /// 无注释
  49. /// </summary>
  50. private string createTime = "";
  51. /// <summary>
  52. /// 备注说明
  53. /// </summary>
  54. private string memo = "";
  55. /// <summary>
  56. /// 电炉总投料量
  57. /// </summary>
  58. private decimal? weigthST = null;
  59. /// <summary>
  60. /// 电炉排产量(产出量)
  61. /// </summary>
  62. private decimal? weigthSA = null;
  63. /// <summary>
  64. /// 铸造排产量(产出量)
  65. /// </summary>
  66. private decimal? weigthSB = null;
  67. /// <summary>
  68. /// 锻造排产量(产出量)
  69. /// </summary>
  70. private decimal? weigthSC = null;
  71. /// <summary>
  72. /// 轧管排产量(产出量)
  73. /// </summary>
  74. private decimal? weigthSD = null;
  75. /// <summary>
  76. /// 镦拨扩排产量(产出量)
  77. /// </summary>
  78. private decimal? weigthSE = null;
  79. /// <summary>
  80. /// 热处理排产量(产出量)
  81. /// </summary>
  82. private decimal? weigthSF = null;
  83. /// <summary>
  84. /// 加工排产量(产出量)
  85. /// </summary>
  86. private decimal? weigthSG = null;
  87. /// <summary>
  88. /// 接箍排产量(产出量)
  89. /// </summary>
  90. private decimal? weigthSH = null;
  91. /// <summary>
  92. /// 管坯外购量
  93. /// </summary>
  94. private decimal? wlWg = null;
  95. /// <summary>
  96. /// 年月
  97. /// </summary>
  98. [Description("年月")]
  99. [Nullable(false)]
  100. [DataLength(6)]
  101. public string YearMonth
  102. {
  103. get { return yearMonth; }
  104. set { yearMonth = value; }
  105. }
  106. /// <summary>
  107. /// 铁水(t)
  108. /// </summary>
  109. [Description("铁水(t)")]
  110. [Nullable(true)]
  111. [DataLength(15)]
  112. public decimal? WlTs
  113. {
  114. get { return wlTs; }
  115. set { wlTs = value; }
  116. }
  117. /// <summary>
  118. /// 生铁(t)
  119. /// </summary>
  120. [Description("生铁(t)")]
  121. [Nullable(true)]
  122. [DataLength(15)]
  123. public decimal? WlSt
  124. {
  125. get { return wlSt; }
  126. set { wlSt = value; }
  127. }
  128. /// <summary>
  129. /// 废钢(t)
  130. /// </summary>
  131. [Description("废钢(t)")]
  132. [Nullable(true)]
  133. [DataLength(15)]
  134. public decimal? WlFg
  135. {
  136. get { return wlFg; }
  137. set { wlFg = value; }
  138. }
  139. /// <summary>
  140. /// 铁水采购单价(元)
  141. /// </summary>
  142. [Description("铁水采购单价(元)")]
  143. [Nullable(true)]
  144. [DataLength(15)]
  145. public decimal? WlTsCost
  146. {
  147. get { return wlTsCost; }
  148. set { wlTsCost = value; }
  149. }
  150. /// <summary>
  151. /// 生铁采购单价(元)
  152. /// </summary>
  153. [Description("生铁采购单价(元)")]
  154. [Nullable(true)]
  155. [DataLength(15)]
  156. public decimal? WlStCost
  157. {
  158. get { return wlStCost; }
  159. set { wlStCost = value; }
  160. }
  161. /// <summary>
  162. /// 废钢采购单价(元)
  163. /// </summary>
  164. [Description("废钢采购单价(元)")]
  165. [Nullable(true)]
  166. [DataLength(15)]
  167. public decimal? WlFgCost
  168. {
  169. get { return wlFgCost; }
  170. set { wlFgCost = value; }
  171. }
  172. /// <summary>
  173. /// 当前年月钢铁料总成本(元)
  174. /// </summary>
  175. [Description("当前年月钢铁料总成本(元)")]
  176. [Nullable(true)]
  177. [DataLength(15)]
  178. public decimal? SumCost
  179. {
  180. get { return sumCost; }
  181. set { sumCost = value; }
  182. }
  183. /// <summary>
  184. /// 无注释
  185. /// </summary>
  186. [Description("创建时间")]
  187. [Nullable(true)]
  188. public string CreateTime
  189. {
  190. get { return createTime; }
  191. set { createTime = value; }
  192. }
  193. /// <summary>
  194. /// 备注说明
  195. /// </summary>
  196. [Description("备注说明")]
  197. [Nullable(true)]
  198. [DataLength(500)]
  199. public string Memo
  200. {
  201. get { return memo; }
  202. set { memo = value; }
  203. }
  204. /// <summary>
  205. /// 电炉总投料量
  206. /// </summary>
  207. [Description("电炉总投料量(t)")]
  208. [Nullable(true)]
  209. [DataLength(15)]
  210. public decimal? WeigthST
  211. {
  212. get { return weigthST; }
  213. set { weigthST = value; }
  214. }
  215. /// <summary>
  216. /// 电炉排产量(产出量)
  217. /// </summary>
  218. [Description("电炉排产量(t)")]
  219. [Nullable(true)]
  220. [DataLength(15)]
  221. public decimal? WeigthSA
  222. {
  223. get { return weigthSA; }
  224. set { weigthSA = value; }
  225. }
  226. /// <summary>
  227. /// 铸造排产量(产出量)
  228. /// </summary>
  229. [Description("铸造排产量(t)")]
  230. [Nullable(true)]
  231. [DataLength(15)]
  232. public decimal? WeigthSB
  233. {
  234. get { return weigthSB; }
  235. set { weigthSB = value; }
  236. }
  237. /// <summary>
  238. /// 锻造排产量(产出量)
  239. /// </summary>
  240. [Description("锻造排产量(t)")]
  241. [Nullable(true)]
  242. [DataLength(15)]
  243. public decimal? WeigthSC
  244. {
  245. get { return weigthSC; }
  246. set { weigthSC = value; }
  247. }
  248. /// <summary>
  249. /// 轧管排产量(产出量)
  250. /// </summary>
  251. [Description("轧管排产量(t)")]
  252. [Nullable(true)]
  253. [DataLength(15)]
  254. public decimal? WeigthSD
  255. {
  256. get { return weigthSD; }
  257. set { weigthSD = value; }
  258. }
  259. /// <summary>
  260. /// 镦拨扩排产量(产出量)
  261. /// </summary>
  262. [Description("镦拨扩排产量(t)")]
  263. [Nullable(true)]
  264. [DataLength(15)]
  265. public decimal? WeigthSE
  266. {
  267. get { return weigthSE; }
  268. set { weigthSE = value; }
  269. }
  270. /// <summary>
  271. /// 热处理排产量(产出量)
  272. /// </summary>
  273. [Description("热处理排产量(t)")]
  274. [Nullable(true)]
  275. [DataLength(15)]
  276. public decimal? WeigthSF
  277. {
  278. get { return weigthSF; }
  279. set { weigthSF = value; }
  280. }
  281. /// <summary>
  282. /// 加工排产量(产出量)
  283. /// </summary>
  284. [Description("加工排产量(t)")]
  285. [Nullable(true)]
  286. [DataLength(15)]
  287. public decimal? WeigthSG
  288. {
  289. get { return weigthSG; }
  290. set { weigthSG = value; }
  291. }
  292. /// <summary>
  293. /// 接箍排产量(产出量)
  294. /// </summary>
  295. [Description("接箍排产量(t)")]
  296. [Nullable(true)]
  297. [DataLength(15)]
  298. public decimal? WeigthSH
  299. {
  300. get { return weigthSH; }
  301. set { weigthSH = value; }
  302. }
  303. /// <summary>
  304. /// 管坯外购量
  305. /// </summary>
  306. [Description("管坯外购量(t)")]
  307. [Nullable(true)]
  308. [DataLength(15)]
  309. public decimal? WlWg
  310. {
  311. get { return wlWg; }
  312. set { wlWg = value; }
  313. }
  314. }
  315. }