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
522 B
45 lines
522 B
<?php
|
|
|
|
/**
|
|
* 返回结果
|
|
* @author auto create
|
|
*/
|
|
class UserGetByCodeResponse
|
|
{
|
|
|
|
/**
|
|
* 用户统一id
|
|
**/
|
|
public $associated_unionid;
|
|
|
|
/**
|
|
* 设备id
|
|
**/
|
|
public $device_id;
|
|
|
|
/**
|
|
* 用户名字
|
|
**/
|
|
public $name;
|
|
|
|
/**
|
|
* 是否为管理员
|
|
**/
|
|
public $sys;
|
|
|
|
/**
|
|
* 员工级别。 1:主管理员 2:子管理员 100:老板 0:其他(如普通员工)
|
|
**/
|
|
public $sys_level;
|
|
|
|
/**
|
|
* 用户unionId
|
|
**/
|
|
public $unionid;
|
|
|
|
/**
|
|
* 用户id
|
|
**/
|
|
public $userid;
|
|
}
|
|
?>
|