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.
20 lines
268 B
20 lines
268 B
<?php
|
|
|
|
/**
|
|
* 返回结果
|
|
* @author auto create
|
|
*/
|
|
class UserGetByMobileResponse
|
|
{
|
|
|
|
/**
|
|
* 专属帐号员工的userid列表(不含其他组织创建的专属帐号)
|
|
**/
|
|
public $exclusive_account_userid_list;
|
|
|
|
/**
|
|
* 员工id
|
|
**/
|
|
public $userid;
|
|
}
|
|
?>
|