BalanceCicpriceM.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class BalanceCicpriceM
  7. {
  8. /** 主键 */
  9. private string id;
  10. public string Id
  11. {
  12. get { return id; }
  13. set { id = value; }
  14. }
  15. /** 名称 */
  16. private string name;
  17. public string Name
  18. {
  19. get { return name; }
  20. set { name = value; }
  21. }
  22. /** 物料编码 */
  23. private string itemCode;
  24. public string ItemCode
  25. {
  26. get { return itemCode; }
  27. set { itemCode = value; }
  28. }
  29. /** 物料描述 */
  30. private string itemDesc;
  31. public string ItemDesc
  32. {
  33. get { return itemDesc; }
  34. set { itemDesc = value; }
  35. }
  36. /** 物料名称 */
  37. private string itemName;
  38. public string ItemName
  39. {
  40. get { return itemName; }
  41. set { itemName = value; }
  42. }
  43. /** 物料英文名称 */
  44. private string itemDescE;
  45. public string ItemDescE
  46. {
  47. get { return itemDescE; }
  48. set { itemDescE = value; }
  49. }
  50. /** 物料型号规格 */
  51. private string itemSpec;
  52. public string ItemSpec
  53. {
  54. get { return itemSpec; }
  55. set { itemSpec = value; }
  56. }
  57. /** 是否使用采购单位 */
  58. private string itemUseUom;
  59. public string ItemUseUom
  60. {
  61. get { return itemUseUom; }
  62. set { itemUseUom = value; }
  63. }
  64. /** 采购单位(个、袋、桶) */
  65. private string itemUom;
  66. public string ItemUom
  67. {
  68. get { return itemUom; }
  69. set { itemUom = value; }
  70. }
  71. /** 转换系数 */
  72. private double? itemUomConefficient;
  73. public double? ItemUomConefficient
  74. {
  75. get { return itemUomConefficient; }
  76. set { itemUomConefficient = value; }
  77. }
  78. /** 库存单位 */
  79. private string weightUnit;
  80. public string WeightUnit
  81. {
  82. get { return weightUnit; }
  83. set { weightUnit = value; }
  84. }
  85. /** 物料材质 */
  86. private string itemModel;
  87. public string ItemModel
  88. {
  89. get { return itemModel; }
  90. set { itemModel = value; }
  91. }
  92. /** 备注 */
  93. private string remark;
  94. public string Remark
  95. {
  96. get { return remark; }
  97. set { remark = value; }
  98. }
  99. /** 数据状态(有效、无效) */
  100. private string validflag;
  101. public string Validflag
  102. {
  103. get { return validflag; }
  104. set { validflag = value; }
  105. }
  106. /** 创建人 */
  107. private string createName;
  108. public string CreateName
  109. {
  110. get { return createName; }
  111. set { createName = value; }
  112. }
  113. /** 创建时间 */
  114. private DateTime? createTime;
  115. public DateTime? CreateTime
  116. {
  117. get { return createTime; }
  118. set { createTime = value; }
  119. }
  120. /** 修改人 */
  121. private string updateName;
  122. public string UpdateName
  123. {
  124. get { return updateName; }
  125. set { updateName = value; }
  126. }
  127. /** 修改时间 */
  128. private DateTime? updateTime;
  129. public DateTime? UpdateTime
  130. {
  131. get { return updateTime; }
  132. set { updateTime = value; }
  133. }
  134. /** 废除人 */
  135. private string deleteName;
  136. public string DeleteName
  137. {
  138. get { return deleteName; }
  139. set { deleteName = value; }
  140. }
  141. /** 废除时间 */
  142. private DateTime? deleteTime;
  143. public DateTime? DeleteTime
  144. {
  145. get { return deleteTime; }
  146. set { deleteTime = value; }
  147. }
  148. /** 创建人ID */
  149. private string createUserid;
  150. public string CreateUserid
  151. {
  152. get { return createUserid; }
  153. set { createUserid = value; }
  154. }
  155. /** 修改人ID */
  156. private string updateUserid;
  157. public string UpdateUserid
  158. {
  159. get { return updateUserid; }
  160. set { updateUserid = value; }
  161. }
  162. /** 废除人ID */
  163. private string deleteUserid;
  164. public string DeleteUserid
  165. {
  166. get { return deleteUserid; }
  167. set { deleteUserid = value; }
  168. }
  169. /** 属性编码 */
  170. private string itemAttrId;
  171. public string ItemAttrId
  172. {
  173. get { return itemAttrId; }
  174. set { itemAttrId = value; }
  175. }
  176. /** 属性 */
  177. private string itemAttr;
  178. public string ItemAttr
  179. {
  180. get { return itemAttr; }
  181. set { itemAttr = value; }
  182. }
  183. }
  184. }