CkMove.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class CkMove
  7. {
  8. /** 库存记录号 */
  9. private string invId;
  10. public string InvId
  11. {
  12. get { return invId; }
  13. set { invId = value; }
  14. }
  15. /** 1.操作移库,2.挂单移库 */
  16. private string type;
  17. public string Type
  18. {
  19. get { return type; }
  20. set { type = value; }
  21. }
  22. /** "1:待确认
  23. 2:已完成
  24. 9:已取消
  25. " */
  26. private string status;
  27. public string Status
  28. {
  29. get { return status; }
  30. set { status = value; }
  31. }
  32. /** 移库数量 */
  33. private double? qty;
  34. public double? Qty
  35. {
  36. get { return qty; }
  37. set { qty = value; }
  38. }
  39. /** 备注 */
  40. private string remark;
  41. public string Remark
  42. {
  43. get { return remark; }
  44. set { remark = value; }
  45. }
  46. /** 数据状态(有效、无效) */
  47. private string validflag;
  48. public string Validflag
  49. {
  50. get { return validflag; }
  51. set { validflag = value; }
  52. }
  53. /** 创建人 */
  54. private string createName;
  55. public string CreateName
  56. {
  57. get { return createName; }
  58. set { createName = value; }
  59. }
  60. /** 创建时间 */
  61. private DateTime? createTime;
  62. public DateTime? CreateTime
  63. {
  64. get { return createTime; }
  65. set { createTime = value; }
  66. }
  67. /** 创建人ID */
  68. private string createUserid;
  69. public string CreateUserid
  70. {
  71. get { return createUserid; }
  72. set { createUserid = value; }
  73. }
  74. /** 废除人 */
  75. private string deleteName;
  76. public string DeleteName
  77. {
  78. get { return deleteName; }
  79. set { deleteName = value; }
  80. }
  81. /** 废除时间 */
  82. private DateTime? deleteTime;
  83. public DateTime? DeleteTime
  84. {
  85. get { return deleteTime; }
  86. set { deleteTime = value; }
  87. }
  88. /** 废除人ID */
  89. private string deleteUserid;
  90. public string DeleteUserid
  91. {
  92. get { return deleteUserid; }
  93. set { deleteUserid = value; }
  94. }
  95. /** 主键 */
  96. private string moveId;
  97. public string MoveId
  98. {
  99. get { return moveId; }
  100. set { moveId = value; }
  101. }
  102. /** 新库存记录号 */
  103. private string invIdNew;
  104. public string InvIdNew
  105. {
  106. get { return invIdNew; }
  107. set { invIdNew = value; }
  108. }
  109. /** 库存记录行号 */
  110. private string invPosId;
  111. public string InvPosId
  112. {
  113. get { return invPosId; }
  114. set { invPosId = value; }
  115. }
  116. /** 新库存记录行号 */
  117. private string invPosIdNew;
  118. public string InvPosIdNew
  119. {
  120. get { return invPosIdNew; }
  121. set { invPosIdNew = value; }
  122. }
  123. /** 关联的托管单号 */
  124. private string tid;
  125. public string TId
  126. {
  127. get { return tid; }
  128. set { tid = value; }
  129. }
  130. }
  131. }