zss
2025-03-07 12291480d592402398c3ba76e8de6006da5c2612
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.ruoyi.personnel.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
@Data
public class PersonTrainingDetailedUpload {
 
//    @ExcelProperty("培训目标")
    @ExcelProperty(index = 1)
    private String trainingObjectives;
 
//    @ExcelProperty("培训内容")
    @ExcelProperty(index = 2)
    private String trainingContent;
 
//    @ExcelProperty("培训方式")
    @ExcelProperty(index = 3)
    private String trainingMode;
 
//    @ExcelProperty("参加对象")
    @ExcelProperty(index = 4)
    private String participants;
 
//    @ExcelProperty("举办部门")
    @ExcelProperty(index = 5)
    private String holdingDepartment;
 
//    @ExcelProperty("培训讲师")
    @ExcelProperty(index = 6)
    private String trainingLecturerName;
 
//    @ExcelProperty("培训时间")
    @ExcelProperty(index = 7)
    private String trainingDate;
 
//    @ExcelProperty("课时")
    @ExcelProperty(index = 8)
    private String classHour;
 
//    @ExcelProperty("备注")
    @ExcelProperty(index = 9)
    private String remarks;
}