DeliveryLocation.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. using System;
  2. using System.Text;
  3. namespace Pur.Entity.configureEntity
  4. {
  5. [Serializable]
  6. public class DeliveryLocationDz
  7. {
  8. /** 交付地点编码 */
  9. private string deliveryLocationCode;
  10. public string DeliveryLocationCode
  11. {
  12. get { return deliveryLocationCode; }
  13. set { deliveryLocationCode = value; }
  14. }
  15. /** 交付地点 */
  16. private string deliveryLocation;
  17. public string DeliveryLocation
  18. {
  19. get { return deliveryLocation; }
  20. set { deliveryLocation = value; }
  21. }
  22. /** 机构ID */
  23. private string orgId;
  24. public string OrgId
  25. {
  26. get { return orgId; }
  27. set { orgId = value; }
  28. }
  29. /** 机构名称 */
  30. private string orgName;
  31. public string OrgName
  32. {
  33. get { return orgName; }
  34. set { orgName = value; }
  35. }
  36. /** 是否为默认值 */
  37. private string isDefault;
  38. public string IsDefault
  39. {
  40. get { return isDefault; }
  41. set { isDefault = value; }
  42. }
  43. /** 所属人ID */
  44. private string ownerUserid;
  45. public string OwnerUserid
  46. {
  47. get { return ownerUserid; }
  48. set { ownerUserid = value; }
  49. }
  50. /** 所属人姓名 */
  51. private string ownerName;
  52. public string OwnerName
  53. {
  54. get { return ownerName; }
  55. set { ownerName = value; }
  56. }
  57. /** 数据状态(有效、无效) */
  58. private string validflag;
  59. public string Validflag
  60. {
  61. get { return validflag; }
  62. set { validflag = value; }
  63. }
  64. /** 创建人 */
  65. private string createName;
  66. public string CreateName
  67. {
  68. get { return createName; }
  69. set { createName = value; }
  70. }
  71. /** 创建时间 */
  72. private DateTime? createTime;
  73. public DateTime? CreateTime
  74. {
  75. get { return createTime; }
  76. set { createTime = value; }
  77. }
  78. /** 修改人 */
  79. private string updateName;
  80. public string UpdateName
  81. {
  82. get { return updateName; }
  83. set { updateName = value; }
  84. }
  85. /** 修改时间 */
  86. private DateTime? updateTime;
  87. public DateTime? UpdateTime
  88. {
  89. get { return updateTime; }
  90. set { updateTime = value; }
  91. }
  92. /** 废除人 */
  93. private string deleteName;
  94. public string DeleteName
  95. {
  96. get { return deleteName; }
  97. set { deleteName = value; }
  98. }
  99. /** 废除时间 */
  100. private DateTime? deleteTime;
  101. public DateTime? DeleteTime
  102. {
  103. get { return deleteTime; }
  104. set { deleteTime = value; }
  105. }
  106. /** 创建人ID */
  107. private string createUserid;
  108. public string CreateUserid
  109. {
  110. get { return createUserid; }
  111. set { createUserid = value; }
  112. }
  113. /** 修改人ID */
  114. private string updateUserid;
  115. public string UpdateUserid
  116. {
  117. get { return updateUserid; }
  118. set { updateUserid = value; }
  119. }
  120. /** 废除人ID */
  121. private string deleteUserid;
  122. public string DeleteUserid
  123. {
  124. get { return deleteUserid; }
  125. set { deleteUserid = value; }
  126. }
  127. /** 关联库区 */
  128. private string invPhysic;
  129. public string InvPhysic
  130. {
  131. get { return invPhysic; }
  132. set { invPhysic = value; }
  133. }
  134. /** 关联库区名称 */
  135. private string invPhysicName;
  136. public string InvPhysicName
  137. {
  138. get { return invPhysicName; }
  139. set { invPhysicName = value; }
  140. }
  141. /** 是否为JIT交付地址*/
  142. private string isJit;
  143. public string IsJit
  144. {
  145. get { return isJit; }
  146. set { isJit = value; }
  147. }
  148. }
  149. }