ExcDeliveryM.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. using System;
  2. using System.Text;
  3. namespace Pur.Entity.ck
  4. {
  5. [Serializable]
  6. public class ExcDeliveryM
  7. {
  8. /** 送货单号 */
  9. private string deliveryId;
  10. public string DeliveryId
  11. {
  12. get { return deliveryId; }
  13. set { deliveryId = value; }
  14. }
  15. /** 送货单类型 */
  16. private string deliveryType;
  17. public string DeliveryType
  18. {
  19. get { return deliveryType; }
  20. set { deliveryType = value; }
  21. }
  22. /** 发货通知单号 */
  23. private string noticeId;
  24. public string NoticeId
  25. {
  26. get { return noticeId; }
  27. set { noticeId = value; }
  28. }
  29. /** 状态 */
  30. private string status;
  31. public string Status
  32. {
  33. get { return status; }
  34. set { status = value; }
  35. }
  36. /** 合同号 */
  37. private string orderId;
  38. public string OrderId
  39. {
  40. get { return orderId; }
  41. set { orderId = value; }
  42. }
  43. /** 交付地点编码 */
  44. private string deliveryLocationCode;
  45. public string DeliveryLocationCode
  46. {
  47. get { return deliveryLocationCode; }
  48. set { deliveryLocationCode = value; }
  49. }
  50. /** 交付地点 */
  51. private string deliveryLocation;
  52. public string DeliveryLocation
  53. {
  54. get { return deliveryLocation; }
  55. set { deliveryLocation = value; }
  56. }
  57. /** 供应商代码 */
  58. private string suppCode;
  59. public string SuppCode
  60. {
  61. get { return suppCode; }
  62. set { suppCode = value; }
  63. }
  64. /** 供应商名称 */
  65. private string suppName;
  66. public string SuppName
  67. {
  68. get { return suppName; }
  69. set { suppName = value; }
  70. }
  71. /** 发货跟踪号 */
  72. private string trackingId;
  73. public string TrackingId
  74. {
  75. get { return trackingId; }
  76. set { trackingId = value; }
  77. }
  78. /** 提单号 */
  79. private string bollCode;
  80. public string BollCode
  81. {
  82. get { return bollCode; }
  83. set { bollCode = value; }
  84. }
  85. /** 送货单据号 */
  86. private string deliverSheetId;
  87. public string DeliverSheetId
  88. {
  89. get { return deliverSheetId; }
  90. set { deliverSheetId = value; }
  91. }
  92. /** 公司代码 */
  93. private string companyCode;
  94. public string CompanyCode
  95. {
  96. get { return companyCode; }
  97. set { companyCode = value; }
  98. }
  99. /** 公司中文名称 */
  100. private string companyName;
  101. public string CompanyName
  102. {
  103. get { return companyName; }
  104. set { companyName = value; }
  105. }
  106. /** 备注 */
  107. private string remark;
  108. public string Remark
  109. {
  110. get { return remark; }
  111. set { remark = value; }
  112. }
  113. /** 数据状态(有效、无效) */
  114. private string validflag;
  115. public string Validflag
  116. {
  117. get { return validflag; }
  118. set { validflag = value; }
  119. }
  120. /** 创建人 */
  121. private string createName;
  122. public string CreateName
  123. {
  124. get { return createName; }
  125. set { createName = value; }
  126. }
  127. /** 创建时间 */
  128. private DateTime? createTime;
  129. public DateTime? CreateTime
  130. {
  131. get { return createTime; }
  132. set { createTime = value; }
  133. }
  134. /** 修改人 */
  135. private string updateName;
  136. public string UpdateName
  137. {
  138. get { return updateName; }
  139. set { updateName = value; }
  140. }
  141. /** 修改时间 */
  142. private DateTime? updateTime;
  143. public DateTime? UpdateTime
  144. {
  145. get { return updateTime; }
  146. set { updateTime = value; }
  147. }
  148. /** 废除人 */
  149. private string deleteName;
  150. public string DeleteName
  151. {
  152. get { return deleteName; }
  153. set { deleteName = value; }
  154. }
  155. /** 废除时间 */
  156. private DateTime? deleteTime;
  157. public DateTime? DeleteTime
  158. {
  159. get { return deleteTime; }
  160. set { deleteTime = value; }
  161. }
  162. /** 创建人ID */
  163. private string createUserid;
  164. public string CreateUserid
  165. {
  166. get { return createUserid; }
  167. set { createUserid = value; }
  168. }
  169. /** 修改人ID */
  170. private string updateUserid;
  171. public string UpdateUserid
  172. {
  173. get { return updateUserid; }
  174. set { updateUserid = value; }
  175. }
  176. /** 废除人ID */
  177. private string deleteUserid;
  178. public string DeleteUserid
  179. {
  180. get { return deleteUserid; }
  181. set { deleteUserid = value; }
  182. }
  183. }
  184. }