package com.doumee.dao.business.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.doumee.core.annotation.excel.ExcelColumn;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* 员工信息导入表
|
* @author 江蹄蹄
|
* @date 2024/01/16 10:03
|
*/
|
@Data
|
@ApiModel("员工信息导入")
|
public class MemberImport {
|
|
@ExcelColumn(name="姓名",value = "name")
|
private String name;
|
|
@ExcelColumn(name="身份证号码",value = "idCard")
|
private String idCard;
|
|
@ExcelColumn(name="年龄",value = "age")
|
private Integer age;
|
|
@ApiModelProperty(value = "派遣单位主键")
|
private Integer duId;
|
|
@ApiModelProperty(value = "性别")
|
private Integer sex;
|
|
@ApiModelProperty(value = "所属工种主键")
|
private Integer workTypeId;
|
|
@ApiModelProperty(value = "派遣单位名称")
|
private String duName;
|
|
@ApiModelProperty(value = "所属工种名称")
|
private String workTypeName;
|
}
|