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.
30 lines
271 B
30 lines
271 B
<?php
|
|
|
|
/**
|
|
* 成员信息
|
|
* @author auto create
|
|
*/
|
|
class MemberInfo
|
|
{
|
|
|
|
/**
|
|
* 是否是全员分组
|
|
**/
|
|
public $all_member;
|
|
|
|
/**
|
|
* 部门信息
|
|
**/
|
|
public $dept;
|
|
|
|
/**
|
|
* 员工信息
|
|
**/
|
|
public $staff;
|
|
|
|
/**
|
|
* 角色
|
|
**/
|
|
public $tag;
|
|
}
|
|
?>
|