1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ruoyi.system.dto;
|
| import cn.afterturn.easypoi.excel.annotation.Excel;
| import lombok.Data;
|
| import java.io.Serializable;
|
| @Data
| public class MahorImportExcel implements Serializable {
|
|
|
| @Excel(name = "职称系列名称")
| private String titileName;
| @Excel(name = "专业名称")
| private String majorName;
|
|
| @Excel(name = "地区(城市名)")
| private String address;
|
|
|
| }
|
|