Stock.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * base_stock.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: base_stock
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2024-07-22 11:33:39 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. /// base_stock:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class Stock
  25. {
  26. public Stock()
  27. {}
  28. #region Model
  29. private string _id_;
  30. private string _work_id;
  31. private string _machine_name;
  32. private int? _stock_number;
  33. private decimal? _length_;
  34. private decimal? _tag_length;
  35. private string _flaw_;
  36. private int? _status_;
  37. private bool _del_flag;
  38. private string _create_by;
  39. private DateTime? _create_time;
  40. private string _update_by;
  41. private DateTime? _update_time;
  42. /// <summary>
  43. ///
  44. /// </summary>
  45. public string id_
  46. {
  47. set{ _id_=value;}
  48. get{return _id_;}
  49. }
  50. /// <summary>
  51. ///
  52. /// </summary>
  53. public string work_id
  54. {
  55. set{ _work_id=value;}
  56. get{return _work_id;}
  57. }
  58. /// <summary>
  59. ///
  60. /// </summary>
  61. public string machine_name
  62. {
  63. set{ _machine_name=value;}
  64. get{return _machine_name;}
  65. }
  66. /// <summary>
  67. ///
  68. /// </summary>
  69. public int? stock_number
  70. {
  71. set{ _stock_number=value;}
  72. get{return _stock_number;}
  73. }
  74. /// <summary>
  75. ///
  76. /// </summary>
  77. public decimal? length_
  78. {
  79. set{ _length_=value;}
  80. get{return _length_;}
  81. }
  82. /// <summary>
  83. ///
  84. /// </summary>
  85. public decimal? tag_length
  86. {
  87. set{ _tag_length=value;}
  88. get{return _tag_length;}
  89. }
  90. /// <summary>
  91. ///
  92. /// </summary>
  93. public string flaw_
  94. {
  95. set{ _flaw_=value;}
  96. get{return _flaw_;}
  97. }
  98. /// <summary>
  99. ///
  100. /// </summary>
  101. public int? status_
  102. {
  103. set{ _status_=value;}
  104. get{return _status_;}
  105. }
  106. /// <summary>
  107. ///
  108. /// </summary>
  109. public bool del_flag
  110. {
  111. set{ _del_flag=value;}
  112. get{return _del_flag;}
  113. }
  114. /// <summary>
  115. ///
  116. /// </summary>
  117. public string create_by
  118. {
  119. set{ _create_by=value;}
  120. get{return _create_by;}
  121. }
  122. /// <summary>
  123. ///
  124. /// </summary>
  125. public DateTime? create_time
  126. {
  127. set{ _create_time=value;}
  128. get{return _create_time;}
  129. }
  130. /// <summary>
  131. ///
  132. /// </summary>
  133. public string update_by
  134. {
  135. set{ _update_by=value;}
  136. get{return _update_by;}
  137. }
  138. /// <summary>
  139. ///
  140. /// </summary>
  141. public DateTime? update_time
  142. {
  143. set{ _update_time=value;}
  144. get{return _update_time;}
  145. }
  146. #endregion Model
  147. }
  148. }