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.
45 lines
397 B
45 lines
397 B
<?php
|
|
|
|
/**
|
|
* 人员身份详情列表
|
|
* @author auto create
|
|
*/
|
|
class Detail
|
|
{
|
|
|
|
/**
|
|
* 班级id
|
|
**/
|
|
public $class_id;
|
|
|
|
/**
|
|
* 身份属性
|
|
**/
|
|
public $feature;
|
|
|
|
/**
|
|
* 手机号
|
|
**/
|
|
public $mobile;
|
|
|
|
/**
|
|
* 人员名
|
|
**/
|
|
public $name;
|
|
|
|
/**
|
|
* 身份
|
|
**/
|
|
public $role;
|
|
|
|
/**
|
|
* unionid
|
|
**/
|
|
public $unionid;
|
|
|
|
/**
|
|
* 人员id
|
|
**/
|
|
public $userid;
|
|
}
|
|
?>
|