PhysicSeatEntity.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Pur.Entity.configureEntity
  6. {
  7. [Serializable]
  8. public class PhysicSeatEntity
  9. {
  10. /** 物理库区 */
  11. private string invPhysic;
  12. public string InvPhysic
  13. {
  14. get { return invPhysic; }
  15. set { invPhysic = value; }
  16. }
  17. /** 物理库区名称 */
  18. private string invPhysicName;
  19. public string InvPhysicName
  20. {
  21. get { return invPhysicName; }
  22. set { invPhysicName = value; }
  23. }
  24. /** 是否严格储位物理库区(1:是 0:否) */
  25. private string isStrictBin;
  26. public string IsStrictBin
  27. {
  28. get { return isStrictBin; }
  29. set { isStrictBin = value; }
  30. }
  31. /** 所在区域 */
  32. private string invLocation;
  33. public string InvLocation
  34. {
  35. get { return invLocation; }
  36. set { invLocation = value; }
  37. }
  38. /** 数据状态(有效、无效) */
  39. private string validflag;
  40. public string Validflag
  41. {
  42. get { return validflag; }
  43. set { validflag = value; }
  44. }
  45. /** 创建人 */
  46. private string createName;
  47. public string CreateName
  48. {
  49. get { return createName; }
  50. set { createName = value; }
  51. }
  52. /** 创建时间 */
  53. private DateTime? createTime;
  54. public DateTime? CreateTime
  55. {
  56. get { return createTime; }
  57. set { createTime = value; }
  58. }
  59. /** 修改人 */
  60. private string updateName;
  61. public string UpdateName
  62. {
  63. get { return updateName; }
  64. set { updateName = value; }
  65. }
  66. /** 修改时间 */
  67. private DateTime? updateTime;
  68. public DateTime? UpdateTime
  69. {
  70. get { return updateTime; }
  71. set { updateTime = value; }
  72. }
  73. /** 废除人 */
  74. private string deleteName;
  75. public string DeleteName
  76. {
  77. get { return deleteName; }
  78. set { deleteName = value; }
  79. }
  80. /** 废除时间 */
  81. private DateTime? deleteTime;
  82. public DateTime? DeleteTime
  83. {
  84. get { return deleteTime; }
  85. set { deleteTime = value; }
  86. }
  87. /** 创建人ID */
  88. private string createUserid;
  89. public string CreateUserid
  90. {
  91. get { return createUserid; }
  92. set { createUserid = value; }
  93. }
  94. /** 修改人ID */
  95. private string updateUserid;
  96. public string UpdateUserid
  97. {
  98. get { return updateUserid; }
  99. set { updateUserid = value; }
  100. }
  101. /** 废除人ID */
  102. private string deleteUserid;
  103. public string DeleteUserid
  104. {
  105. get { return deleteUserid; }
  106. set { deleteUserid = value; }
  107. }
  108. //IS_JIT_CK
  109. private string isJitCk;
  110. public string IsJitCk
  111. {
  112. get { return isJitCk; }
  113. set { isJitCk = value; }
  114. }
  115. //IS_GYB_CK
  116. private string isGybCk;
  117. public string IsGybCk
  118. {
  119. get { return isGybCk; }
  120. set { isGybCk = value; }
  121. }
  122. //ORG_ID
  123. private string orgId;
  124. public string OrgId
  125. {
  126. get { return orgId; }
  127. set { orgId = value; }
  128. }
  129. //ORG_NAME
  130. private string orgName;
  131. public string OrgName
  132. {
  133. get { return orgName; }
  134. set { orgName = value; }
  135. }
  136. //成本中心
  137. private string costCenter;
  138. public string CostCenter
  139. {
  140. get { return costCenter; }
  141. set { costCenter = value; }
  142. }
  143. }
  144. }