12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * data
- * @author auto create
- */
- class TelConferenceDeptSummaryVo
- {
-
- /**
- * 部门id
- **/
- public $dept_id;
-
- /**
- * 部门名称
- **/
- public $dept_name;
-
- /**
- * 参与人次
- **/
- public $join_count;
-
- /**
- * 平均时长(分钟)
- **/
- public $start_avg_len_min;
-
- /**
- * 发起次数
- **/
- public $start_count;
-
- /**
- * 发起总时长(分钟)
- **/
- public $start_len_min;
- }
- ?>
|