| package doumeemes.dao.system.dto; | 
|   | 
| import cn.afterturn.easypoi.excel.annotation.Excel; | 
| import doumeemes.dao.system.model.SystemUser; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * @author Eva.Caesar Liu | 
|  * @date 2022/04/18 18:12 | 
|  */ | 
| @Data | 
| @ApiModel("创建用户参数") | 
| public class ImportUserDTO { | 
|   | 
|     @Excel(name="姓名",orderNum ="1") | 
|     private String name; | 
|     @Excel(name="手机号",orderNum ="2") | 
|     private String phone; | 
|     @Excel(name="工号",orderNum ="3") | 
|     private String no; | 
|     @Excel(name="部门",orderNum ="4") | 
|     private String department ; | 
|     @Excel(name="岗位",orderNum ="5") | 
|     private String position ; | 
|     @Excel(name="角色",orderNum ="6") | 
|     private String role ; | 
|   | 
| } |