ActualSeatPosEntity.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class ActualSeatPosEntity
  7. {
  8. /** 主键 */
  9. private string id;
  10. public string Id
  11. {
  12. get { return id; }
  13. set { id = value; }
  14. }
  15. /** 物理库区 */
  16. private string invPhysic;
  17. public string InvPhysic
  18. {
  19. get { return invPhysic; }
  20. set { invPhysic = value; }
  21. }
  22. /** 物理库区名称 */
  23. private string invPhysicName;
  24. public string InvPhysicName
  25. {
  26. get { return invPhysicName; }
  27. set { invPhysicName = value; }
  28. }
  29. /** 库位编号 */
  30. private string invPos;
  31. public string InvPos
  32. {
  33. get { return invPos; }
  34. set { invPos = value; }
  35. }
  36. /** 库位名称 */
  37. private string invPosName;
  38. public string InvPosName
  39. {
  40. get { return invPosName; }
  41. set { invPosName = 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. /** 创建人ID */
  72. private string createUserid;
  73. public string CreateUserid
  74. {
  75. get { return createUserid; }
  76. set { createUserid = value; }
  77. }
  78. /** 废除人ID */
  79. private string deleteUserid;
  80. public string DeleteUserid
  81. {
  82. get { return deleteUserid; }
  83. set { deleteUserid = 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. }
  100. }