1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * list
- * @author auto create
- */
- class MsgStatByCIdResVo
- {
-
- /**
- * 群Id
- **/
- public $conversation_id;
-
- /**
- * 钉钉id
- **/
- public $dingtalk_id;
-
- /**
- * 成员名称
- **/
- public $name;
-
- /**
- * 机器人消息推送Id
- **/
- public $push_id;
-
- /**
- * 是否已读
- **/
- public $read_status;
- }
- ?>
|