| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- /**
- * 返回的主要实体
- * @author auto create
- */
- class EntDailyReportDTO
- {
-
- /**
- * 其中已经接收到正确回执的单据数量是
- **/
- public $bill_file_accepted_count;
-
- /**
- * 其中生成的单据总数
- **/
- public $bill_file_count;
-
- /**
- * 其中还没有接收回执的单据数量是
- **/
- public $bill_file_un_accepted_count;
-
- /**
- * 其中已经接收到正确回执的单据包数量是
- **/
- public $bill_task_accepted_count;
-
- /**
- * 其中单据生成包的数量
- **/
- public $bill_task_count;
-
- /**
- * 其中还没有接收回执的包数量是
- **/
- public $bill_task_un_accepted_count;
-
- /**
- * 报告结束时间
- **/
- public $end_time;
-
- /**
- * 报告所有者名称
- **/
- public $ent_name;
-
- /**
- * 该报告的所有者唯一标识
- **/
- public $ref_ent_id;
-
- /**
- * 其中已经接收到正确回执的关联关系数量是
- **/
- public $relation_file_accepted_count;
-
- /**
- * 其中生成的关联关系文件总数
- **/
- public $relation_file_count;
-
- /**
- * 其中还没有接收回执的关联关系数量是
- **/
- public $relation_file_un_accepted_count;
-
- /**
- * 其中已经接收到正确回执的文件数量是
- **/
- public $relation_task_accepted_count;
-
- /**
- * 其中关联关系工生成包的数量
- **/
- public $relation_task_count;
-
- /**
- * 其中还没有接收回执的数量是
- **/
- public $relation_task_un_accepted_count;
-
- /**
- * 备注
- **/
- public $remark;
-
- /**
- * 报告开始时间
- **/
- public $start_time;
- }
- ?>
|