111
k94314517
2024-01-29 c9df4cfec262ca54af52715af60a1276c37d08c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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 = "sn")
    private Integer sn;
 
    @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;
}