InOrdParamEntity.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace com.steering.pss.plnsaleord.ordAmCal.model
  6. {
  7. /// <summary>
  8. /// 合同量转换原则参数实体类
  9. /// 作者:xiaohai-PC 时间:2015-11-19
  10. /// </summary>
  11. class InOrdParamEntity
  12. {
  13. /// <summary>
  14. /// 订货计量单位
  15. /// </summary>
  16. private string orderUnit = "";
  17. /// <summary>
  18. /// 订货计量单位
  19. /// </summary>
  20. public string OrderUnit
  21. {
  22. get { return orderUnit; }
  23. set { orderUnit = value; }
  24. }
  25. /// <summary>
  26. /// 交货行pk
  27. /// </summary>
  28. private string ordLnDlyPk = "";
  29. /// <summary>
  30. /// 交货行pk
  31. /// </summary>
  32. public string OrdLnDlyPk
  33. {
  34. get { return ordLnDlyPk; }
  35. set { ordLnDlyPk = value; }
  36. }
  37. /// <summary>
  38. /// 订货量
  39. /// </summary>
  40. private double orderQty = 0;
  41. /// <summary>
  42. /// 订货量
  43. /// </summary>
  44. public double OrderQty
  45. {
  46. get { return orderQty; }
  47. set { orderQty = value; }
  48. }
  49. /// <summary>
  50. /// 保总长单位
  51. /// </summary>
  52. private string totlengthUnit = "";
  53. /// <summary>
  54. /// 保总长单位
  55. /// </summary>
  56. public string TotlengthUnit
  57. {
  58. get { return totlengthUnit; }
  59. set { totlengthUnit = value; }
  60. }
  61. /// <summary>
  62. /// 保总长
  63. /// </summary>
  64. private double totlength = 0;
  65. /// <summary>
  66. /// 保总长
  67. /// </summary>
  68. public double Totlength
  69. {
  70. get { return totlength; }
  71. set { totlength = value; }
  72. }
  73. /// <summary>
  74. /// 长度上限(m)
  75. /// </summary>
  76. private double lengthMax = 0;
  77. public double LengthMax
  78. {
  79. get { return lengthMax; }
  80. set { lengthMax = value; }
  81. }
  82. /// <summary>
  83. /// 长度下限(m)
  84. /// </summary>
  85. private double lengthMin = 0;
  86. /// <summary>
  87. /// 长度下限(m)
  88. /// </summary>
  89. public double LengthMin
  90. {
  91. get { return lengthMin; }
  92. set { lengthMin = value; }
  93. }
  94. /// <summary>
  95. /// 外径(mm)
  96. /// </summary>
  97. private double outdiameter = 0;
  98. /// <summary>
  99. /// 外径(mm)
  100. /// </summary>
  101. public double Outdiameter
  102. {
  103. get { return outdiameter; }
  104. set { outdiameter = value; }
  105. }
  106. /// <summary>
  107. /// 壁厚(mm)
  108. /// </summary>
  109. private double wallthick = 0;
  110. /// <summary>
  111. /// 壁厚(mm)
  112. /// </summary>
  113. public double Wallthick
  114. {
  115. get { return wallthick; }
  116. set { wallthick = value; }
  117. }
  118. /// <summary>
  119. /// 交货标准壁厚公差上限(mm)
  120. /// </summary>
  121. private double stdWallthickMax = 0;
  122. /// <summary>
  123. /// 交货标准壁厚公差上限(mm)
  124. /// </summary>
  125. public double StdWallthickMax
  126. {
  127. get { return stdWallthickMax; }
  128. set { stdWallthickMax = value; }
  129. }
  130. /// <summary>
  131. /// 交货标准壁厚公差下限(mm)
  132. /// </summary>
  133. private double stdWallthickMin = 0;
  134. /// <summary>
  135. /// 交货标准壁厚公差下限(mm)
  136. /// </summary>
  137. public double StdWallthickMin
  138. {
  139. get { return stdWallthickMin; }
  140. set { stdWallthickMin = value; }
  141. }
  142. /// <summary>
  143. /// 内控壁厚公差上限(mm)
  144. /// </summary>
  145. private double nkWallthickMax = 0;
  146. /// <summary>
  147. /// 内控壁厚公差上限(mm)
  148. /// </summary>
  149. public double NkWallthickMax
  150. {
  151. get { return nkWallthickMax; }
  152. set { nkWallthickMax = value; }
  153. }
  154. /// <summary>
  155. /// 内控壁厚公差下限(mm)
  156. /// </summary>
  157. private double nkWallthickMin = 0;
  158. /// <summary>
  159. /// 内控壁厚公差下限(mm)
  160. /// </summary>
  161. public double NkWallthickMin
  162. {
  163. get { return nkWallthickMin; }
  164. set { nkWallthickMin = value; }
  165. }
  166. /// <summary>
  167. ///机组壁厚公差带能力%
  168. /// </summary>
  169. private double toleranceZone = 0.0;
  170. /// <summary>
  171. ///机组壁厚公差带能力%
  172. /// </summary>
  173. public double ToleranceZone
  174. {
  175. get { return toleranceZone; }
  176. set { toleranceZone = value; }
  177. }
  178. /// <summary>
  179. /// 机组壁厚公差带(mm)
  180. /// </summary>
  181. private double plineWallthick = 0;
  182. /// <summary>
  183. /// 机组壁厚公差带(mm)
  184. /// </summary>
  185. public double PlineWallthick
  186. {
  187. get { return plineWallthick; }
  188. set { plineWallthick = value; }
  189. }
  190. /// <summary>
  191. /// 计重方式(0 - 理重 / 1 - 实重 / -1 - 按长度交货)
  192. /// </summary>
  193. private int weightType = -1;
  194. /// <summary>
  195. /// 计重方式(0 - 理重 / 1 - 实重 / -1 - 按长度交货)
  196. /// </summary>
  197. public int WeightType
  198. {
  199. get { return weightType; }
  200. set { weightType = value; }
  201. }
  202. /// <summary>
  203. /// 交货量差上限
  204. /// </summary>
  205. private double delvryRangeMax = 0;
  206. /// <summary>
  207. /// 交货量差上限
  208. /// </summary>
  209. public double DelvryRangeMax
  210. {
  211. get { return delvryRangeMax; }
  212. set { delvryRangeMax = value; }
  213. }
  214. /// <summary>
  215. /// 交货量差下限
  216. /// </summary>
  217. private double delvryRangeMin = 0;
  218. /// <summary>
  219. /// 交货量差下限
  220. /// </summary>
  221. public double DelvryRangeMin
  222. {
  223. get { return delvryRangeMin; }
  224. set { delvryRangeMin = value; }
  225. }
  226. /// <summary>
  227. /// 交货量差方式(百分比 - 1/绝对值 - 2)
  228. /// </summary>
  229. private int delvryRangeTpe = 1;
  230. /// <summary>
  231. /// 交货量差方式(百分比 - 1/绝对值 - 2)
  232. /// </summary>
  233. public int DelvryRangeTpe
  234. {
  235. get { return delvryRangeTpe; }
  236. set { delvryRangeTpe = value; }
  237. }
  238. /// <summary>
  239. /// 接箍单重(kg)
  240. /// </summary>
  241. private double weightJg = 0;
  242. /// <summary>
  243. /// 接箍单重(kg)
  244. /// </summary>
  245. public double WeightJg
  246. {
  247. get { return weightJg; }
  248. set { weightJg = value; }
  249. }
  250. /// <summary>
  251. /// 接箍测量J值(mm)
  252. /// </summary>
  253. private double checkJVal = 0;
  254. /// <summary>
  255. /// 接箍测量J值(mm)
  256. /// </summary>
  257. public double CheckJVal
  258. {
  259. get { return checkJVal; }
  260. set { checkJVal = value; }
  261. }
  262. /// <summary>
  263. /// 扣型描述
  264. /// </summary>
  265. private string modelDesc = "";
  266. /// <summary>
  267. /// 扣型描述
  268. /// </summary>
  269. public string ModelDesc
  270. {
  271. get { return modelDesc; }
  272. set { modelDesc = value; }
  273. }
  274. /// <summary>
  275. /// 镦拔扩加长(mm)
  276. /// </summary>
  277. private double addLengthDbk = 0;
  278. /// <summary>
  279. /// 镦拔扩加长(mm)
  280. /// </summary>s
  281. public double AddLengthDbk
  282. {
  283. get { return addLengthDbk; }
  284. set { addLengthDbk = value; }
  285. }
  286. /// <summary>
  287. /// 墩粗影响长度(mm)
  288. /// </summary>
  289. private double addLengthDc = 0;
  290. /// <summary>
  291. /// 墩粗影响长度(mm)
  292. /// </summary>
  293. public double AddLengthDc
  294. {
  295. get { return addLengthDc; }
  296. set { addLengthDc = value; }
  297. }
  298. /// <summary>
  299. /// 镦拔扩烧损(%)
  300. /// </summary>
  301. private double burnoutDbk = 0;
  302. /// <summary>
  303. /// 镦拔扩烧损(%)
  304. /// </summary>
  305. public double BurnoutDbk
  306. {
  307. get { return burnoutDbk; }
  308. set { burnoutDbk = value; }
  309. }
  310. /// <summary>
  311. /// 探伤盲区切长(mm)
  312. /// </summary>
  313. private double inspectLen = 0;
  314. /// <summary>
  315. /// 探伤盲区切长(mm)
  316. /// </summary>
  317. public double InspectLen
  318. {
  319. get { return inspectLen; }
  320. set { inspectLen = value; }
  321. }
  322. /// <summary>
  323. /// 投料率
  324. /// </summary>
  325. private double putRate = 1;
  326. /// <summary>
  327. /// 投料率
  328. /// </summary>
  329. public double PutRate
  330. {
  331. get { return putRate; }
  332. set { putRate = value; }
  333. }
  334. /// <summary>
  335. /// 轧管规格外径(mm)
  336. /// </summary>
  337. private double diameterZg = 0;
  338. /// <summary>
  339. /// 轧管规格外径(mm)
  340. /// </summary>
  341. public double DiameterZg
  342. {
  343. get { return diameterZg; }
  344. set { diameterZg = value; }
  345. }
  346. /// <summary>
  347. /// 轧管规格壁厚(mm)
  348. /// </summary>
  349. private double heightZg = 0;
  350. /// <summary>
  351. /// 轧管规格壁厚(mm)
  352. /// </summary>
  353. public double HeightZg
  354. {
  355. get { return heightZg; }
  356. set { heightZg = value; }
  357. }
  358. /// <summary>
  359. /// 是否短尺随炉
  360. /// </summary>
  361. private bool shrtStove = false;
  362. /// <summary>
  363. /// 是否短尺随炉
  364. /// </summary>
  365. public bool ShrtStove
  366. {
  367. get { return shrtStove; }
  368. set { shrtStove = value; }
  369. }
  370. /// <summary>
  371. /// 单倍尺长(m)
  372. /// </summary>
  373. private double sigllen = 0;
  374. /// <summary>
  375. /// 单倍尺长(m)
  376. /// </summary>
  377. public double Sigllen
  378. {
  379. get { return sigllen; }
  380. set { sigllen = value; }
  381. }
  382. /// <summary>
  383. /// 轧管工序烧损(%)
  384. /// </summary>
  385. private double burnoutRate = 0;
  386. /// <summary>
  387. /// 轧管工序烧损(%)
  388. /// </summary>
  389. public double BurnoutRate
  390. {
  391. get { return burnoutRate; }
  392. set { burnoutRate = value; }
  393. }
  394. /// <summary>
  395. /// 坯料断面(mm)
  396. /// </summary>
  397. private List<Double> diameterPl = null;
  398. /// <summary>
  399. /// 坯料断面(mm)
  400. /// </summary>
  401. public List<Double> DiameterPl
  402. {
  403. get { return diameterPl; }
  404. set { diameterPl = value; }
  405. }
  406. /// <summary>
  407. /// 轧管工序切头加切尾和(mm)
  408. /// </summary>
  409. private double cutHeadEnd = 0;
  410. /// <summary>
  411. /// 轧管工序切头加切尾和(mm)
  412. /// </summary>
  413. public double CutHeadEnd
  414. {
  415. get { return cutHeadEnd; }
  416. set { cutHeadEnd = value; }
  417. }
  418. /// <summary>
  419. /// 环形炉最长(mm)
  420. /// </summary>
  421. private double lengthMaxRing = 0;
  422. /// <summary>
  423. /// 环形炉最长(mm)
  424. /// </summary>
  425. public double LengthMaxRing
  426. {
  427. get { return lengthMaxRing; }
  428. set { lengthMaxRing = value; }
  429. }
  430. /// <summary>
  431. /// 冷床长度(m)
  432. /// </summary>
  433. private double lengthColdbed = 0;
  434. /// <summary>
  435. /// 冷床长度(m)
  436. /// </summary>
  437. public double LengthColdbed
  438. {
  439. get { return lengthColdbed; }
  440. set { lengthColdbed = value; }
  441. }
  442. /// <summary>
  443. /// 短尺最短(m)
  444. /// </summary>
  445. private double footmin = 0;
  446. /// <summary>
  447. /// 短尺最短(m)
  448. /// </summary>
  449. public double Footmin
  450. {
  451. get { return footmin; }
  452. set { footmin = value; }
  453. }
  454. /// <summary>
  455. /// 轧管产线长度下限(m)
  456. /// </summary>
  457. private double plineLenMin = 0;
  458. /// <summary>
  459. /// 轧管产线长度下限(m)
  460. /// </summary>
  461. public double PlineLenMin
  462. {
  463. get { return plineLenMin; }
  464. set { plineLenMin = value; }
  465. }
  466. /// <summary>
  467. /// 轧管产线长度上限(m)
  468. /// </summary>
  469. private double plineLenMax = 0;
  470. /// <summary>
  471. /// 轧管产线长度上限(m)
  472. /// </summary>
  473. public double PlineLenMax
  474. {
  475. get { return plineLenMax; }
  476. set { plineLenMax = value; }
  477. }
  478. private string desginKey;
  479. public string DesginKey
  480. {
  481. get { return desginKey; }
  482. set { desginKey = value; }
  483. }
  484. private string indexSeq;
  485. public string IndexSeq
  486. {
  487. get { return indexSeq; }
  488. set { indexSeq = value; }
  489. }
  490. }
  491. }