GroupMemberChatData.php 259 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 活跃数据对象
  4. * @author auto create
  5. */
  6. class GroupMemberChatData
  7. {
  8. /**
  9. * 聊天记录数
  10. **/
  11. public $chat_cnt;
  12. /**
  13. * 客户类型
  14. **/
  15. public $custom_flag;
  16. /**
  17. * 发送者staffid
  18. **/
  19. public $sender_staffid;
  20. }
  21. ?>