BillInOutDetailDto.php 721 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * 对象模型信息
  4. * @author auto create
  5. */
  6. class BillInOutDetailDto
  7. {
  8. /**
  9. * 单据详情
  10. **/
  11. public $bill_chk_in_out_detail_list_d_t_o_list;
  12. /**
  13. * 单据号码
  14. **/
  15. public $bill_code;
  16. /**
  17. * 单据日期
  18. **/
  19. public $bill_time;
  20. /**
  21. * 单据类型
  22. **/
  23. public $bill_type;
  24. /**
  25. * 单据类型名称
  26. **/
  27. public $bill_type_name;
  28. /**
  29. * 发货企业名称
  30. **/
  31. public $from_ent_name;
  32. /**
  33. * 发货企业id
  34. **/
  35. public $from_user_id;
  36. /**
  37. * 修改时间
  38. **/
  39. public $mod_date;
  40. /**
  41. * 处理时间
  42. **/
  43. public $process_date;
  44. /**
  45. * 收货企业名称
  46. **/
  47. public $to_ent_name;
  48. /**
  49. * 收货企业id
  50. **/
  51. public $to_user_id;
  52. }
  53. ?>