UserVo.java 1.04 KB
Newer Older
zzrdark committed
1
package com.mx.cneeds.common.vo;
zzrdark committed
2 3

import lombok.Data;
zzrdark committed
4
import org.springframework.format.annotation.DateTimeFormat;
zzrdark committed
5 6

import java.io.Serializable;
zzrdark committed
7
import java.util.Date;
zzrdark committed
8
import java.util.List;
zzrdark committed
9 10 11 12 13 14 15 16 17

/**
 * @ClassName SysUser
 * @Author zzrdark
 * @Date 2020-03-03 16:54
 * @Description TODO
 **/
@Data
public class UserVo implements Serializable {
zzrdark committed
18 19 20 21 22 23 24
    /**
     * 用户id
     */
    private Long userId;
    /**
     * 用户名
     */
zzrdark committed
25
    private String username;
zzrdark committed
26 27 28
    /**
     * 密码
     */
zzrdark committed
29
    private String password;
30

zzrdark committed
31
    /**
32
     * 简介
zzrdark committed
33
     */
34 35
    private String remark;

zzrdark committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
    /**
     * 邮箱
     */
    private String email;
    /**
     * 手机
     */
    private String mobile;
    /**
     * 账户状态 0:禁用   1:正常
     */
    private Integer status;
    /**
     * 部门id
     */
    private Long deptId;

zzrdark committed
53 54 55 56 57 58
    /**
     * 创建时间
     */
    @DateTimeFormat( pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;

zzrdark committed
59

60
    private List<Long> userFuncIdList;
zzrdark committed
61

62
    private List<Long> userDeptIdList;
zzrdark committed
63

zzrdark committed
64
    private Long roleId;
zzrdark committed
65
}