/** * Copyright (c) 2018 人人开源 All rights reserved. * * https://www.renren.io * * 版权所有,侵权必究! */ package com.zt.modules.sys.excel; import com.alibaba.excel.annotation.ExcelProperty; import lombok.Data; /** * 用户管理 * * @author Mark sunlightcs@gmail.com * @since 1.0.0 */ @Data public class SysUserExcel { @ExcelProperty("用户名") private String username; @ExcelProperty("姓名") private String realName; @ExcelProperty("性别") private Integer gender; @ExcelProperty("邮箱") private String email; @ExcelProperty("手机号") private String mobile; @ExcelProperty("部门名称") private String deptName; @ExcelProperty("状态") private Integer status; @ExcelProperty("备注") private String remark; }