BillUpstreamDTO.php 639 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * model
  4. * @author auto create
  5. */
  6. class BillUpstreamDTO
  7. {
  8. /**
  9. * 单据号
  10. **/
  11. public $bill_code;
  12. /**
  13. * 单据时间
  14. **/
  15. public $bill_time;
  16. /**
  17. * 单据类型
  18. **/
  19. public $bill_type;
  20. /**
  21. * 发货企业REF_ENT_ID
  22. **/
  23. public $from_ref_user_id;
  24. /**
  25. * 发货企业ID
  26. **/
  27. public $from_user_id;
  28. /**
  29. * 发货企业名称
  30. **/
  31. public $from_user_name;
  32. /**
  33. * 货主
  34. **/
  35. public $ref_user_id;
  36. /**
  37. * 收货企业REF_ENT_ID
  38. **/
  39. public $to_ref_user_id;
  40. /**
  41. * 收货企业ID
  42. **/
  43. public $to_user_id;
  44. /**
  45. * 收货企业名称
  46. **/
  47. public $to_user_name;
  48. }
  49. ?>