forked from zhangyuan/epmet-cloud-lingshan
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.
43 lines
1002 B
43 lines
1002 B
/**
|
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
|
*
|
|
* https://www.renren.io
|
|
*
|
|
* 版权所有,侵权必究!
|
|
*/
|
|
|
|
package com.epmet.excel;
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 用户管理
|
|
*
|
|
* @author Mark sunlightcs@gmail.com
|
|
* @since 1.0.0
|
|
*/
|
|
@Data
|
|
public class SysUserExcel {
|
|
@Excel(name = "用户名")
|
|
private String username;
|
|
@Excel(name = "姓名")
|
|
private String realName;
|
|
@Excel(name = "性别", replace = {"男_0", "女_1", "保密_2"})
|
|
private Integer gender;
|
|
@Excel(name = "邮箱")
|
|
private String email;
|
|
@Excel(name = "手机号")
|
|
private String mobile;
|
|
@Excel(name = "部门名称")
|
|
private String deptName;
|
|
@Excel(name = "状态", replace = {"停用_0", "正常_1"})
|
|
private Integer status;
|
|
@Excel(name = "备注")
|
|
private String remark;
|
|
@Excel(name = "创建时间", format = "yyyy-MM-dd HH:mm:ss")
|
|
private Date createDate;
|
|
|
|
}
|
|
|