| package com.doumee.dao.admin.request; | 
|   | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import org.springframework.web.multipart.MultipartFile; | 
|   | 
| import java.util.Date; | 
| import java.util.List; | 
|   | 
| /** | 
|  * @author T14 | 
|  */ | 
| @Data | 
| @ApiModel("门禁有效期批量处理") | 
| public class LaborEmpowerDTO { | 
|   | 
|     @ApiModelProperty(value = "文件") | 
|     private MultipartFile file; | 
|   | 
|     @ApiModelProperty(value = "开始时间") | 
|     private Date startTime; | 
|   | 
|     @ApiModelProperty(value = "结束时间") | 
|     private Date endTime; | 
|   | 
|     @ApiModelProperty(value = "下发方式") | 
|     private Integer sendType; | 
|   | 
|     @ApiModelProperty(value = "门禁角色") | 
|     private  String deviceRole; | 
|   | 
|     @ApiModelProperty(value = "门禁id") | 
|     private List<String> deviceIds; | 
|   | 
|     @Data | 
|     @ApiModel("劳务人员信息") | 
|     public static class LaborMemberEmpower{ | 
|   | 
|         @ApiModelProperty(value = "姓名") | 
|         @ExcelColumn(name="姓名") | 
|         private String name; | 
|   | 
|         @ApiModelProperty(value = "手机号") | 
|         @ExcelColumn(name="手机号") | 
|         private String phone; | 
|   | 
|         @ApiModelProperty(value = "身份证号") | 
|         @ExcelColumn(name="身份证号") | 
|         private String idcardNo; | 
|   | 
|     } | 
| } |