ModecoefficientEntity.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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 ModecoefficientEntity
  9. {
  10. /// <summary>
  11. /// 扣型
  12. /// </summary>
  13. private string modelDesc = "";
  14. /// <summary>
  15. /// 镦粗
  16. /// </summary>
  17. private string upsetting = "";
  18. /// <summary>
  19. /// 探伤
  20. /// </summary>
  21. private string testing = "";
  22. /// <summary>
  23. /// 螺纹加工
  24. /// </summary>
  25. private string threading = "";
  26. /// <summary>
  27. /// 系数
  28. /// </summary>
  29. private decimal? threadcoefficient = null;
  30. /// <summary>
  31. /// 公端磷化
  32. /// </summary>
  33. private string phosphating = "";
  34. /// <summary>
  35. /// 拧接
  36. /// </summary>
  37. private string screwing = "";
  38. /// <summary>
  39. /// 水压
  40. /// </summary>
  41. private string hydraulic = "";
  42. /// <summary>
  43. /// 通径
  44. /// </summary>
  45. private string pathway = "";
  46. /// <summary>
  47. /// 测长称重
  48. /// </summary>
  49. private string lengthweighing = "";
  50. /// <summary>
  51. /// 标识喷漆
  52. /// </summary>
  53. private string logopainting = "";
  54. /// <summary>
  55. /// 包装
  56. /// </summary>
  57. private string wrap = "";
  58. /// <summary>
  59. /// 打捆
  60. /// </summary>
  61. private string baling = "";
  62. /// <summary>
  63. /// 接箍金额
  64. /// </summary>
  65. private decimal? couplings = null;
  66. /// <summary>
  67. /// 扣型
  68. /// </summary>
  69. [Description("扣型")]
  70. //[JsonProperty("modelDesc")]
  71. public string ModelDesc
  72. {
  73. get { return modelDesc; }
  74. set { modelDesc = value; }
  75. }
  76. /// <summary>
  77. /// 镦粗
  78. /// </summary>
  79. [Description("镦粗")]
  80. //[JsonProperty("upsetting")]
  81. public string Upsetting
  82. {
  83. get { return upsetting; }
  84. set { upsetting = value; }
  85. }
  86. /// <summary>
  87. /// 探伤
  88. /// </summary>
  89. [Description("探伤")]
  90. //[JsonProperty("testing")]
  91. public string Testing
  92. {
  93. get { return testing; }
  94. set { testing = value; }
  95. }
  96. /// <summary>
  97. /// 螺纹加工
  98. /// </summary>
  99. [Description("螺纹加工")]
  100. //[JsonProperty("threading")]
  101. public string Threading
  102. {
  103. get { return threading; }
  104. set { threading = value; }
  105. }
  106. /// <summary>
  107. /// 系数
  108. /// </summary>
  109. [Description("系数")]
  110. //[JsonProperty("threadcoefficient")]
  111. public decimal? Threadcoefficient
  112. {
  113. get { return threadcoefficient; }
  114. set { threadcoefficient = value; }
  115. }
  116. /// <summary>
  117. /// 公端磷化
  118. /// </summary>
  119. [Description("公端磷化")]
  120. //[JsonProperty("phosphating")]
  121. public string Phosphating
  122. {
  123. get { return phosphating; }
  124. set { phosphating = value; }
  125. }
  126. /// <summary>
  127. /// 拧接
  128. /// </summary>
  129. [Description("拧接")]
  130. //[JsonProperty("screwing")]
  131. public string Screwing
  132. {
  133. get { return screwing; }
  134. set { screwing = value; }
  135. }
  136. /// <summary>
  137. /// 水压
  138. /// </summary>
  139. [Description("水压")]
  140. //[JsonProperty("hydraulic")]
  141. public string Hydraulic
  142. {
  143. get { return hydraulic; }
  144. set { hydraulic = value; }
  145. }
  146. /// <summary>
  147. /// 通径
  148. /// </summary>
  149. [Description("通径")]
  150. //[JsonProperty("pathway")]
  151. public string Pathway
  152. {
  153. get { return pathway; }
  154. set { pathway = value; }
  155. }
  156. /// <summary>
  157. /// 测长称重
  158. /// </summary>
  159. [Description("测长称重")]
  160. //[JsonProperty("lengthweighing")]
  161. public string Lengthweighing
  162. {
  163. get { return lengthweighing; }
  164. set { lengthweighing = value; }
  165. }
  166. /// <summary>
  167. /// 标识喷漆
  168. /// </summary>
  169. [Description("标识喷漆")]
  170. //[JsonProperty("logopainting")]
  171. public string Logopainting
  172. {
  173. get { return logopainting; }
  174. set { logopainting = value; }
  175. }
  176. /// <summary>
  177. /// 包装
  178. /// </summary>
  179. [Description("包装")]
  180. //[JsonProperty("wrap")]
  181. public string Wrap
  182. {
  183. get { return wrap; }
  184. set { wrap = value; }
  185. }
  186. /// <summary>
  187. /// 打捆
  188. /// </summary>
  189. [Description("打捆")]
  190. //[JsonProperty("baling")]
  191. public string Baling
  192. {
  193. get { return baling; }
  194. set { baling = value; }
  195. }
  196. /// <summary>
  197. /// 接箍金额
  198. /// </summary>
  199. [Description("接箍金额")]
  200. //[JsonProperty("couplings")]
  201. public decimal? Couplings
  202. {
  203. get { return couplings; }
  204. set { couplings = value; }
  205. }
  206. }
  207. }