package jnpf.permission.model.user.vo;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
*
|
* @author JNPF开发平台组
|
* @version V3.1.0
|
* @copyright 引迈信息技术有限公司
|
* @date 2021/3/12 15:31
|
*/
|
@Data
|
public class UserListVO {
|
@Schema(description ="主键")
|
private String id;
|
@Schema(description ="账号")
|
private String account;
|
@Schema(description ="姓名")
|
private String realName;
|
@Schema(description ="姓名/账号")
|
private String fullName;
|
@Schema(description ="性别")
|
private String gender;
|
@Schema(description ="手机")
|
private String mobilePhone;
|
@Schema(description ="邮箱")
|
private String email;
|
@Schema(description ="部门")
|
private String organize;
|
@Schema(description ="说明")
|
private String description;
|
@Schema(description ="状态")
|
private Integer enabledMark;
|
@Schema(description ="添加时间",example = "1")
|
private Long creatorTime;
|
@Schema(description ="排序")
|
private Long sortCode;
|
@Schema(description ="锁定标志")
|
private Integer lockMark;
|
@Schema(description ="交接状态")
|
private Integer handoverMark;
|
private Integer isAdministrator;
|
@Schema(description = "头像")
|
private String headIcon;
|
private Date unlockTime;
|
|
@Schema(description ="所属岗位")
|
private String position;
|
@Schema(description ="责任人0-否,1-是")
|
private Integer isDutyUser = 0;
|
|
@Schema(description ="关联主键")
|
private String maxRelationId;
|
}
|