123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * result
- * @author auto create
- */
- class ReportTemplateResponseVo
- {
-
- /**
- * 默认接收群
- **/
- public $default_received_convs;
-
- /**
- * 模板默认接收人
- **/
- public $default_receivers;
-
- /**
- * 模板字段
- **/
- public $fields;
-
- /**
- * 模板id
- **/
- public $id;
-
- /**
- * 模板名称
- **/
- public $name;
-
- /**
- * 用户名称
- **/
- public $user_name;
-
- /**
- * 员工id
- **/
- public $userid;
- }
- ?>
|