CkStatistics.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. using System;
  2. using System.Text;
  3. namespace Pur.Entity.ck
  4. {
  5. [Serializable]
  6. public class CkStatistics:MatAttr
  7. {
  8. /** 主键 */
  9. private string id;
  10. public string Id
  11. {
  12. get { return id; }
  13. set { id = value; }
  14. }
  15. /** 会计期 */
  16. private string accountPeriod;
  17. public string AccountPeriod
  18. {
  19. get { return accountPeriod; }
  20. set { accountPeriod = 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 double? bugPrice;
  87. public double? BugPrice
  88. {
  89. get { return bugPrice; }
  90. set { bugPrice = value; }
  91. }
  92. /** 期初库存数量 */
  93. private double? invPreviousBalanceQty;
  94. public double? InvPreviousBalanceQty
  95. {
  96. get { return invPreviousBalanceQty; }
  97. set { invPreviousBalanceQty = value; }
  98. }
  99. /** 期初库存金额 */
  100. private double? invPreviousBalanceAmt;
  101. public double? InvPreviousBalanceAmt
  102. {
  103. get { return invPreviousBalanceAmt; }
  104. set { invPreviousBalanceAmt = value; }
  105. }
  106. /** 库存收入量 */
  107. private double? invInQty;
  108. public double? InvInQty
  109. {
  110. get { return invInQty; }
  111. set { invInQty = value; }
  112. }
  113. /** 库存收入金额 */
  114. private double? invInAmt;
  115. public double? InvInAmt
  116. {
  117. get { return invInAmt; }
  118. set { invInAmt = value; }
  119. }
  120. /** 库存支出量 */
  121. private double? invOutQty;
  122. public double? InvOutQty
  123. {
  124. get { return invOutQty; }
  125. set { invOutQty = value; }
  126. }
  127. /** 库存支出金额 */
  128. private double? invOutAmt;
  129. public double? InvOutAmt
  130. {
  131. get { return invOutAmt; }
  132. set { invOutAmt = value; }
  133. }
  134. /** 期末库存数量 */
  135. private double? invEndingBalanceQty;
  136. public double? InvEndingBalanceQty
  137. {
  138. get { return invEndingBalanceQty; }
  139. set { invEndingBalanceQty = value; }
  140. }
  141. /** 期末库存金额 */
  142. private double? invEndingBalanceAmt;
  143. public double? InvEndingBalanceAmt
  144. {
  145. get { return invEndingBalanceAmt; }
  146. set { invEndingBalanceAmt = value; }
  147. }
  148. /** 暂估库存数量 */
  149. private double? invEstQty;
  150. public double? InvEstQty
  151. {
  152. get { return invEstQty; }
  153. set { invEstQty = value; }
  154. }
  155. /** 暂估库存金额 */
  156. private double? invEstAmt;
  157. public double? InvEstAmt
  158. {
  159. get { return invEstAmt; }
  160. set { invEstAmt = value; }
  161. }
  162. /** 结算库存数量 */
  163. private double? invBalanceQty;
  164. public double? InvBalanceQty
  165. {
  166. get { return invBalanceQty; }
  167. set { invBalanceQty = value; }
  168. }
  169. /** 结算库存金额 */
  170. private double? invBalanceAmt;
  171. public double? InvBalanceAmt
  172. {
  173. get { return invBalanceAmt; }
  174. set { invBalanceAmt = value; }
  175. }
  176. /** 备注 */
  177. private string remark;
  178. public string Remark
  179. {
  180. get { return remark; }
  181. set { remark = value; }
  182. }
  183. /** 数据状态(有效、无效) */
  184. private string validflag;
  185. public string Validflag
  186. {
  187. get { return validflag; }
  188. set { validflag = value; }
  189. }
  190. /** 创建人 */
  191. private string createName;
  192. public string CreateName
  193. {
  194. get { return createName; }
  195. set { createName = value; }
  196. }
  197. /** 创建时间 */
  198. private DateTime? createTime;
  199. public DateTime? CreateTime
  200. {
  201. get { return createTime; }
  202. set { createTime = value; }
  203. }
  204. /** 修改人 */
  205. private string updateName;
  206. public string UpdateName
  207. {
  208. get { return updateName; }
  209. set { updateName = value; }
  210. }
  211. /** 修改时间 */
  212. private DateTime? updateTime;
  213. public DateTime? UpdateTime
  214. {
  215. get { return updateTime; }
  216. set { updateTime = value; }
  217. }
  218. /** 创建人ID */
  219. private string createUserid;
  220. public string CreateUserid
  221. {
  222. get { return createUserid; }
  223. set { createUserid = value; }
  224. }
  225. /** 修改人ID */
  226. private string updateUserid;
  227. public string UpdateUserid
  228. {
  229. get { return updateUserid; }
  230. set { updateUserid = value; }
  231. }
  232. /** 废除人ID */
  233. private string deleteUserid;
  234. public string DeleteUserid
  235. {
  236. get { return deleteUserid; }
  237. set { deleteUserid = value; }
  238. }
  239. }
  240. }