EntDailyReportDTO.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. /**
  3. * 返回的主要实体
  4. * @author auto create
  5. */
  6. class EntDailyReportDTO
  7. {
  8. /**
  9. * 其中已经接收到正确回执的单据数量是
  10. **/
  11. public $bill_file_accepted_count;
  12. /**
  13. * 其中生成的单据总数
  14. **/
  15. public $bill_file_count;
  16. /**
  17. * 其中还没有接收回执的单据数量是
  18. **/
  19. public $bill_file_un_accepted_count;
  20. /**
  21. * 其中已经接收到正确回执的单据包数量是
  22. **/
  23. public $bill_task_accepted_count;
  24. /**
  25. * 其中单据生成包的数量
  26. **/
  27. public $bill_task_count;
  28. /**
  29. * 其中还没有接收回执的包数量是
  30. **/
  31. public $bill_task_un_accepted_count;
  32. /**
  33. * 报告结束时间
  34. **/
  35. public $end_time;
  36. /**
  37. * 报告所有者名称
  38. **/
  39. public $ent_name;
  40. /**
  41. * 该报告的所有者唯一标识
  42. **/
  43. public $ref_ent_id;
  44. /**
  45. * 其中已经接收到正确回执的关联关系数量是
  46. **/
  47. public $relation_file_accepted_count;
  48. /**
  49. * 其中生成的关联关系文件总数
  50. **/
  51. public $relation_file_count;
  52. /**
  53. * 其中还没有接收回执的关联关系数量是
  54. **/
  55. public $relation_file_un_accepted_count;
  56. /**
  57. * 其中已经接收到正确回执的文件数量是
  58. **/
  59. public $relation_task_accepted_count;
  60. /**
  61. * 其中关联关系工生成包的数量
  62. **/
  63. public $relation_task_count;
  64. /**
  65. * 其中还没有接收回执的数量是
  66. **/
  67. public $relation_task_un_accepted_count;
  68. /**
  69. * 备注
  70. **/
  71. public $remark;
  72. /**
  73. * 报告开始时间
  74. **/
  75. public $start_time;
  76. }
  77. ?>