You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
341 B
35 lines
341 B
<?php
|
|
|
|
/**
|
|
* 成员列表
|
|
* @author auto create
|
|
*/
|
|
class Members
|
|
{
|
|
|
|
/**
|
|
* 成员的ID
|
|
**/
|
|
public $dingtalk_id;
|
|
|
|
/**
|
|
* 群昵称
|
|
**/
|
|
public $group_nick_name;
|
|
|
|
/**
|
|
* 昵称
|
|
**/
|
|
public $nick_name;
|
|
|
|
/**
|
|
* 角色,2-管理员、3-普通成员
|
|
**/
|
|
public $role;
|
|
|
|
/**
|
|
* 员工Id
|
|
**/
|
|
public $userid;
|
|
}
|
|
?>
|