CkOutbillPosition.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class CkOutbillPosition
  7. {
  8. /** 主键 */
  9. private string id;
  10. public string Id
  11. {
  12. get { return id; }
  13. set { id = value; }
  14. }
  15. /** 出库单号 */
  16. private string outStockNo;
  17. public string OutStockNo
  18. {
  19. get { return outStockNo; }
  20. set { outStockNo = value; }
  21. }
  22. /** 顺序号 */
  23. private string seqId;
  24. public string SeqId
  25. {
  26. get { return seqId; }
  27. set { seqId = value; }
  28. }
  29. /** 出库量 */
  30. private double? outNum;
  31. public double? OutNum
  32. {
  33. get { return outNum; }
  34. set { outNum = value; }
  35. }
  36. /** 库存记录号 */
  37. private string invId;
  38. public string InvId
  39. {
  40. get { return invId; }
  41. set { invId = value; }
  42. }
  43. /** 备注 */
  44. private string remark;
  45. public string Remark
  46. {
  47. get { return remark; }
  48. set { remark = value; }
  49. }
  50. /** 数据状态(有效、无效) */
  51. private string validflag;
  52. public string Validflag
  53. {
  54. get { return validflag; }
  55. set { validflag = value; }
  56. }
  57. /** 创建人 */
  58. private string createName;
  59. public string CreateName
  60. {
  61. get { return createName; }
  62. set { createName = value; }
  63. }
  64. /** 创建时间 */
  65. private DateTime? createTime;
  66. public DateTime? CreateTime
  67. {
  68. get { return createTime; }
  69. set { createTime = value; }
  70. }
  71. /** 修改人 */
  72. private string updateName;
  73. public string UpdateName
  74. {
  75. get { return updateName; }
  76. set { updateName = value; }
  77. }
  78. /** 修改时间 */
  79. private DateTime? updateTime;
  80. public DateTime? UpdateTime
  81. {
  82. get { return updateTime; }
  83. set { updateTime = value; }
  84. }
  85. /** 废除人 */
  86. private string deleteName;
  87. public string DeleteName
  88. {
  89. get { return deleteName; }
  90. set { deleteName = value; }
  91. }
  92. /** 废除时间 */
  93. private DateTime? deleteTime;
  94. public DateTime? DeleteTime
  95. {
  96. get { return deleteTime; }
  97. set { deleteTime = value; }
  98. }
  99. /** 创建人ID */
  100. private string createUserid;
  101. public string CreateUserid
  102. {
  103. get { return createUserid; }
  104. set { createUserid = value; }
  105. }
  106. /** 修改人ID */
  107. private string updateUserid;
  108. public string UpdateUserid
  109. {
  110. get { return updateUserid; }
  111. set { updateUserid = value; }
  112. }
  113. /** 废除人ID */
  114. private string deleteUserid;
  115. public string DeleteUserid
  116. {
  117. get { return deleteUserid; }
  118. set { deleteUserid = value; }
  119. }
  120. /** 合同号 */
  121. private string orderId;
  122. public string OrderId
  123. {
  124. get { return orderId; }
  125. set { orderId = value; }
  126. }
  127. /** 合同行号 */
  128. private string orderLineSqe;
  129. public string OrderLineSqe
  130. {
  131. get { return orderLineSqe; }
  132. set { orderLineSqe = value; }
  133. }
  134. /** 供应商代码 */
  135. private string suppCode;
  136. public string SuppCode
  137. {
  138. get { return suppCode; }
  139. set { suppCode = value; }
  140. }
  141. /** 供应商名称 */
  142. private string suppName;
  143. public string SuppName
  144. {
  145. get { return suppName; }
  146. set { suppName = value; }
  147. }
  148. /** 逻辑库区 */
  149. private string invLogic;
  150. public string InvLogic
  151. {
  152. get { return invLogic; }
  153. set { invLogic = value; }
  154. }
  155. /** 物理库区 */
  156. private string invPhysic;
  157. public string InvPhysic
  158. {
  159. get { return invPhysic; }
  160. set { invPhysic = value; }
  161. }
  162. /** 库区储位 */
  163. private string invPos;
  164. public string InvPos
  165. {
  166. get { return invPos; }
  167. set { invPos = value; }
  168. }
  169. /** 批次号 */
  170. private string batchNo;
  171. public string BatchNo
  172. {
  173. get { return batchNo; }
  174. set { batchNo = value; }
  175. }
  176. /** 库存单位 */
  177. private string weightUnit;
  178. public string WeightUnit
  179. {
  180. get { return weightUnit; }
  181. set { weightUnit = value; }
  182. }
  183. //
  184. /** 库存单位 */
  185. private string invPosId;
  186. public string InvPosId
  187. {
  188. get { return invPosId; }
  189. set { invPosId = value; }
  190. }
  191. }
  192. }