BaseprocessbzcostEntity.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Core.StlMes.Client.PnCost.Models
  7. {
  8. public class BaseprocessbzcostEntity
  9. {
  10. /// <summary>
  11. /// JS_DATE
  12. /// </summary>
  13. private string jsDate = "";
  14. /// <summary>
  15. /// ASKPLAN_ID
  16. /// </summary>
  17. private string askplanId = "";
  18. /// <summary>
  19. /// ORD_NO
  20. /// </summary>
  21. private string ordNo = "";
  22. /// <summary>
  23. /// ORD_SEQ
  24. /// </summary>
  25. private string ordSeq = "";
  26. /// <summary>
  27. /// SPETKEY
  28. /// </summary>
  29. private string spetkey = "";
  30. /// <summary>
  31. /// STEELCODEKEY
  32. /// </summary>
  33. private string steelcodekey = "";
  34. /// <summary>
  35. /// MODEL_DESC
  36. /// </summary>
  37. private string modelDesc = "";
  38. /// <summary>
  39. /// WAIJIN
  40. /// </summary>
  41. private decimal? waijin = null;
  42. /// <summary>
  43. /// BIHOU
  44. /// </summary>
  45. private decimal? bihou = null;
  46. /// <summary>
  47. /// WLNAME
  48. /// </summary>
  49. private string wlname = "";
  50. /// <summary>
  51. /// STOVE_NO
  52. /// </summary>
  53. private string stoveNo = "";
  54. /// <summary>
  55. /// COMPANYTYPE
  56. /// </summary>
  57. private string companytype = "";
  58. /// <summary>
  59. /// WEIGHT
  60. /// </summary>
  61. private decimal? weight = null;
  62. /// <summary>
  63. /// MONEY
  64. /// </summary>
  65. private decimal? money = null;
  66. /// <summary>
  67. /// INCEPTCORPCODE
  68. /// </summary>
  69. private string inceptcorpcode = "";
  70. /// <summary>
  71. /// STEELNAME
  72. /// </summary>
  73. private string steelname = "";
  74. /// <summary>
  75. /// ARTICLENAME
  76. /// </summary>
  77. private string articlename = "";
  78. /// <summary>
  79. /// ID
  80. /// </summary>
  81. private string id = "";
  82. /// <summary>
  83. /// IS_CAL
  84. /// </summary>
  85. private decimal? isCal = null;
  86. /// <summary>
  87. /// JS_DATE
  88. /// </summary>
  89. [Description("结算日期")]
  90. //[JsonProperty("jsDate")]
  91. public string JsDate
  92. {
  93. get { return jsDate; }
  94. set { jsDate = value; }
  95. }
  96. /// <summary>
  97. /// ASKPLAN_ID
  98. /// </summary>
  99. [Description("提单号")]
  100. //[JsonProperty("askplanId")]
  101. public string AskplanId
  102. {
  103. get { return askplanId; }
  104. set { askplanId = value; }
  105. }
  106. /// <summary>
  107. /// ORD_NO
  108. /// </summary>
  109. [Description("合同号")]
  110. //[JsonProperty("ordNo")]
  111. public string OrdNo
  112. {
  113. get { return ordNo; }
  114. set { ordNo = value; }
  115. }
  116. /// <summary>
  117. /// ORD_SEQ
  118. /// </summary>
  119. [Description("订单号")]
  120. //[JsonProperty("ordSeq")]
  121. public string OrdSeq
  122. {
  123. get { return ordSeq; }
  124. set { ordSeq = value; }
  125. }
  126. /// <summary>
  127. /// SPETKEY
  128. /// </summary>
  129. [Description("规格")]
  130. //[JsonProperty("spetkey")]
  131. public string Spetkey
  132. {
  133. get { return spetkey; }
  134. set { spetkey = value; }
  135. }
  136. /// <summary>
  137. /// STEELCODEKEY
  138. /// </summary>
  139. [Description("钢级")]
  140. //[JsonProperty("steelcodekey")]
  141. public string Steelcodekey
  142. {
  143. get { return steelcodekey; }
  144. set { steelcodekey = value; }
  145. }
  146. /// <summary>
  147. /// MODEL_DESC
  148. /// </summary>
  149. [Description("扣型")]
  150. //[JsonProperty("modelDesc")]
  151. public string ModelDesc
  152. {
  153. get { return modelDesc; }
  154. set { modelDesc = value; }
  155. }
  156. /// <summary>
  157. /// WAIJIN
  158. /// </summary>
  159. [Description("外径")]
  160. //[JsonProperty("waijin")]
  161. public decimal? Waijin
  162. {
  163. get { return waijin; }
  164. set { waijin = value; }
  165. }
  166. /// <summary>
  167. /// BIHOU
  168. /// </summary>
  169. [Description("壁厚")]
  170. //[JsonProperty("bihou")]
  171. public decimal? Bihou
  172. {
  173. get { return bihou; }
  174. set { bihou = value; }
  175. }
  176. /// <summary>
  177. /// WLNAME
  178. /// </summary>
  179. [Description("物料名称")]
  180. //[JsonProperty("wlname")]
  181. public string Wlname
  182. {
  183. get { return wlname; }
  184. set { wlname = value; }
  185. }
  186. /// <summary>
  187. /// STOVE_NO
  188. /// </summary>
  189. [Description("炉号")]
  190. //[JsonProperty("stoveNo")]
  191. public string StoveNo
  192. {
  193. get { return stoveNo; }
  194. set { stoveNo = value; }
  195. }
  196. /// <summary>
  197. /// COMPANYTYPE
  198. /// </summary>
  199. [Description("公司类型")]
  200. //[JsonProperty("companytype")]
  201. public string Companytype
  202. {
  203. get { return companytype; }
  204. set { companytype = value; }
  205. }
  206. /// <summary>
  207. /// WEIGHT
  208. /// </summary>
  209. [Description("销售重量")]
  210. //[JsonProperty("weight")]
  211. public decimal? Weight
  212. {
  213. get { return weight; }
  214. set { weight = value; }
  215. }
  216. /// <summary>
  217. /// MONEY
  218. /// </summary>
  219. [Description("结算金额")]
  220. //[JsonProperty("money")]
  221. public decimal? Money
  222. {
  223. get { return money; }
  224. set { money = value; }
  225. }
  226. /// <summary>
  227. /// INCEPTCORPCODE
  228. /// </summary>
  229. [Description("收货公司")]
  230. //[JsonProperty("inceptcorpcode")]
  231. public string Inceptcorpcode
  232. {
  233. get { return inceptcorpcode; }
  234. set { inceptcorpcode = value; }
  235. }
  236. /// <summary>
  237. /// STEELNAME
  238. /// </summary>
  239. [Description("钢种名称")]
  240. //[JsonProperty("steelname")]
  241. public string Steelname
  242. {
  243. get { return steelname; }
  244. set { steelname = value; }
  245. }
  246. /// <summary>
  247. /// ARTICLENAME
  248. /// </summary>
  249. [Description("品名")]
  250. //[JsonProperty("articlename")]
  251. public string Articlename
  252. {
  253. get { return articlename; }
  254. set { articlename = value; }
  255. }
  256. /// <summary>
  257. /// ID
  258. /// </summary>
  259. [Description("ID")]
  260. //[JsonProperty("id")]
  261. public string Id
  262. {
  263. get { return id; }
  264. set { id = value; }
  265. }
  266. /// <summary>
  267. /// IS_CAL
  268. /// </summary>
  269. [Description("是否结算")]
  270. //[JsonProperty("isCal")]
  271. public decimal? IsCal
  272. {
  273. get { return isCal; }
  274. set { isCal = value; }
  275. }
  276. }
  277. }