RequireReleaseInv.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class RequireReleaseInv
  7. {
  8. /** 托挂单记录号 */
  9. private string tid;
  10. public string Tid
  11. {
  12. get { return tid; }
  13. set { tid = value; }
  14. }
  15. /** 托挂单记录行号 */
  16. private string tLineId;
  17. public string TLineId
  18. {
  19. get { return tLineId; }
  20. set { tLineId = value; }
  21. }
  22. /** 库存记录行号 */
  23. private string invPosId;
  24. public string InvPosId
  25. {
  26. get { return invPosId; }
  27. set { invPosId = value; }
  28. }
  29. /** 源库存记录行号 */
  30. private string invPosIdOld;
  31. public string InvPosIdOld
  32. {
  33. get { return invPosIdOld; }
  34. set { invPosIdOld = value; }
  35. }
  36. /** 库存记录号 */
  37. private string invId;
  38. public string InvId
  39. {
  40. get { return invId; }
  41. set { invId = value; }
  42. }
  43. /** 数量 */
  44. private double? qty;
  45. public double? Qty
  46. {
  47. get { return qty; }
  48. set { qty = value; }
  49. }
  50. /** 创建时间 */
  51. private DateTime? createTime;
  52. public DateTime? CreateTime
  53. {
  54. get { return createTime; }
  55. set { createTime = value; }
  56. }
  57. /** 创建人ID */
  58. private string createUserId;
  59. public string CreateUserId
  60. {
  61. get { return createUserId; }
  62. set { createUserId = value; }
  63. }
  64. /** 创建人名 */
  65. private string createName;
  66. public string CreateName
  67. {
  68. get { return createName; }
  69. set { createName = value; }
  70. }
  71. /** 是否有效 */
  72. private string validflag;
  73. public string Validflag
  74. {
  75. get { return validflag; }
  76. set { validflag = value; }
  77. }
  78. /** 废除人 */
  79. private string deleteName;
  80. public string DeleteName
  81. {
  82. get { return deleteName; }
  83. set { deleteName = value; }
  84. }
  85. /** 废除时间 */
  86. private DateTime? deleteTime;
  87. public DateTime? DeleteTime
  88. {
  89. get { return deleteTime; }
  90. set { deleteTime = value; }
  91. }
  92. /** 废除人ID */
  93. private string deleteUserid;
  94. public string DeleteUserid
  95. {
  96. get { return deleteUserid; }
  97. set { deleteUserid = value; }
  98. }
  99. /** 库存占用表ID */
  100. private string useId;
  101. public string UseId
  102. {
  103. get { return useId; }
  104. set { useId = value; }
  105. }
  106. /** 源库存记录行号 */
  107. private string invIdOld;
  108. public string InvIdOld
  109. {
  110. get { return invIdOld; }
  111. set { invIdOld = value; }
  112. }
  113. /** 物理库区 */
  114. private string invPhysic;
  115. public string InvPhysic
  116. {
  117. get { return invPhysic; }
  118. set { invPhysic = value; }
  119. }
  120. /** 库区储位 */
  121. private string invPos;
  122. public string InvPos
  123. {
  124. get { return invPos; }
  125. set { invPos = value; }
  126. }
  127. }
  128. }