123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * result
- * @author auto create
- */
- class ServiceConversationModel
- {
-
- /**
- * conversationType
- **/
- public $conversation_type;
-
- /**
- * ownerDingtalkId
- **/
- public $owner_dingtalk_id;
-
- /**
- * ownerName
- **/
- public $owner_name;
-
- /**
- * ownerNick
- **/
- public $owner_nick;
-
- /**
- * ownerUserid
- **/
- public $owner_userid;
-
- /**
- * title
- **/
- public $title;
-
- /**
- * type
- **/
- public $type;
- }
- ?>
|