Work.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * work.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: work
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2024-07-27 10:51:14 N/A 初版
  10. *
  11. * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:动软卓越(北京)科技有限公司              │
  15. *└──────────────────────────────────┘
  16. */
  17. using System;
  18. namespace Jpsoft.Model
  19. {
  20. /// <summary>
  21. /// work:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class Work
  25. {
  26. public Work()
  27. {}
  28. #region Model
  29. private string _id_;
  30. private string _customer_id;
  31. private string _name_;
  32. private double? _width_;
  33. private string _number_;
  34. private DateTime? _process_date;
  35. private int? _process_volume;
  36. private string _process_remark;
  37. private int? _process_number;
  38. private decimal? _ratio_;
  39. private string _colour_;
  40. private decimal? _estimate_quantity;
  41. private string _estimate_remark;
  42. private decimal? _unit_price;
  43. private string _reason_;
  44. private decimal? _cloth_price;
  45. private decimal? _wages_;
  46. private decimal? _roll_length;
  47. private string _tag_operator;
  48. private decimal? _tag_factor;
  49. private decimal? _tag_factor_save;
  50. private string _tag_unit;
  51. private bool _is_integer;
  52. private string _remark_;
  53. private bool _status_;
  54. private bool _del_flag;
  55. private string _create_by;
  56. private DateTime? _create_time;
  57. private string _update_by;
  58. private DateTime? _update_time;
  59. /// <summary>
  60. ///
  61. /// </summary>
  62. public string id_
  63. {
  64. set{ _id_=value;}
  65. get{return _id_;}
  66. }
  67. /// <summary>
  68. ///
  69. /// </summary>
  70. public string customer_id
  71. {
  72. set{ _customer_id=value;}
  73. get{return _customer_id;}
  74. }
  75. /// <summary>
  76. ///
  77. /// </summary>
  78. public string name_
  79. {
  80. set{ _name_=value;}
  81. get{return _name_;}
  82. }
  83. /// <summary>
  84. ///
  85. /// </summary>
  86. public double? width_
  87. {
  88. set{ _width_=value;}
  89. get{return _width_;}
  90. }
  91. /// <summary>
  92. ///
  93. /// </summary>
  94. public string number_
  95. {
  96. set{ _number_=value;}
  97. get{return _number_;}
  98. }
  99. /// <summary>
  100. ///
  101. /// </summary>
  102. public DateTime? process_date
  103. {
  104. set{ _process_date=value;}
  105. get{return _process_date;}
  106. }
  107. /// <summary>
  108. ///
  109. /// </summary>
  110. public int? process_volume
  111. {
  112. set{ _process_volume=value;}
  113. get{return _process_volume;}
  114. }
  115. /// <summary>
  116. ///
  117. /// </summary>
  118. public string process_remark
  119. {
  120. set{ _process_remark=value;}
  121. get{return _process_remark;}
  122. }
  123. /// <summary>
  124. ///
  125. /// </summary>
  126. public int? process_number
  127. {
  128. set{ _process_number=value;}
  129. get{return _process_number;}
  130. }
  131. /// <summary>
  132. ///
  133. /// </summary>
  134. public decimal? ratio_
  135. {
  136. set{ _ratio_=value;}
  137. get{return _ratio_;}
  138. }
  139. /// <summary>
  140. ///
  141. /// </summary>
  142. public string colour_
  143. {
  144. set{ _colour_=value;}
  145. get{return _colour_;}
  146. }
  147. /// <summary>
  148. ///
  149. /// </summary>
  150. public decimal? estimate_quantity
  151. {
  152. set{ _estimate_quantity=value;}
  153. get{return _estimate_quantity;}
  154. }
  155. /// <summary>
  156. ///
  157. /// </summary>
  158. public string estimate_remark
  159. {
  160. set{ _estimate_remark=value;}
  161. get{return _estimate_remark;}
  162. }
  163. /// <summary>
  164. ///
  165. /// </summary>
  166. public decimal? unit_price
  167. {
  168. set{ _unit_price=value;}
  169. get{return _unit_price;}
  170. }
  171. /// <summary>
  172. ///
  173. /// </summary>
  174. public string reason_
  175. {
  176. set{ _reason_=value;}
  177. get{return _reason_;}
  178. }
  179. /// <summary>
  180. ///
  181. /// </summary>
  182. public decimal? cloth_price
  183. {
  184. set{ _cloth_price=value;}
  185. get{return _cloth_price;}
  186. }
  187. /// <summary>
  188. ///
  189. /// </summary>
  190. public decimal? wages_
  191. {
  192. set{ _wages_=value;}
  193. get{return _wages_;}
  194. }
  195. /// <summary>
  196. ///
  197. /// </summary>
  198. public decimal? roll_length
  199. {
  200. set{ _roll_length=value;}
  201. get{return _roll_length;}
  202. }
  203. /// <summary>
  204. ///
  205. /// </summary>
  206. public string tag_operator
  207. {
  208. set{ _tag_operator=value;}
  209. get{return _tag_operator;}
  210. }
  211. /// <summary>
  212. ///
  213. /// </summary>
  214. public decimal? tag_factor
  215. {
  216. set{ _tag_factor=value;}
  217. get{return _tag_factor;}
  218. }
  219. /// <summary>
  220. ///
  221. /// </summary>
  222. public decimal? tag_factor_save
  223. {
  224. set{ _tag_factor_save=value;}
  225. get{return _tag_factor_save;}
  226. }
  227. /// <summary>
  228. ///
  229. /// </summary>
  230. public string tag_unit
  231. {
  232. set{ _tag_unit=value;}
  233. get{return _tag_unit;}
  234. }
  235. /// <summary>
  236. ///
  237. /// </summary>
  238. public bool is_integer
  239. {
  240. set{ _is_integer=value;}
  241. get{return _is_integer;}
  242. }
  243. /// <summary>
  244. ///
  245. /// </summary>
  246. public string remark_
  247. {
  248. set{ _remark_=value;}
  249. get{return _remark_;}
  250. }
  251. /// <summary>
  252. ///
  253. /// </summary>
  254. public bool status_
  255. {
  256. set{ _status_=value;}
  257. get{return _status_;}
  258. }
  259. /// <summary>
  260. ///
  261. /// </summary>
  262. public bool del_flag
  263. {
  264. set{ _del_flag=value;}
  265. get{return _del_flag;}
  266. }
  267. /// <summary>
  268. ///
  269. /// </summary>
  270. public string create_by
  271. {
  272. set{ _create_by=value;}
  273. get{return _create_by;}
  274. }
  275. /// <summary>
  276. ///
  277. /// </summary>
  278. public DateTime? create_time
  279. {
  280. set{ _create_time=value;}
  281. get{return _create_time;}
  282. }
  283. /// <summary>
  284. ///
  285. /// </summary>
  286. public string update_by
  287. {
  288. set{ _update_by=value;}
  289. get{return _update_by;}
  290. }
  291. /// <summary>
  292. ///
  293. /// </summary>
  294. public DateTime? update_time
  295. {
  296. set{ _update_time=value;}
  297. get{return _update_time;}
  298. }
  299. #endregion Model
  300. }
  301. }