package com.doumee.dao.admin.request;
|
|
import com.doumee.core.annotation.excel.ExcelColumn;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* 员工信息导入表
|
* @author 江蹄蹄
|
* @date 2024/01/16 10:03
|
*/
|
@Data
|
@ApiModel("培训有效期信息导入")
|
public class TrainTimeImport {
|
|
// @ExcelColumn(name="序号",value = "sn")
|
private Integer sn;
|
|
@ExcelColumn(name="姓名",value = "name",index = 1)
|
private String name;
|
@ExcelColumn(name="身份证号",value = "idcardNo",index = 2)
|
private String idcardNo;
|
|
@ExcelColumn(name="培训开始日期 格式如2024-5-17 09:46:41" , value = "startTime" ,index = 3)
|
private String startTimeStr;
|
@ExcelColumn(name="培训结束日期 格式如2024-5-17 09:46:41", value = "endTime" , index = 4)
|
private String endTimeStr;
|
private Date startTime;
|
private Date endTime;
|
|
}
|