package com.epmet.dto.dingres; import lombok.Data; /** * @Description * @Author yzm * @Date 2022/9/22 14:08 */ @Data public class V2UserGetuserinfoResDTO { // 接口返参:https://open.dingtalk.com/document/orgapp-server/obtain-the-userid-of-a-user-by-using-the-log-free /** * 用户的userid。 */ private String userid; /** * 设备ID。 */ private String device_id; /** * 是否是管理员。 *

* true:是 *

* false:不是 */ private Boolean sys; /** * 级别。 *

* 1:主管理员 *

* 2:子管理员 *

* 100:老板 *

* 0:其他(如普通员工) */ private Number sys_level; /** * 用户关联的unionId。 */ private String associated_unionid; /** * 用户unionId。 */ private String unionid; /** * 用户名字。 */ private String name; }