zhongrj
2024-11-19 c61fd74f1ff3de48ff0c8549b5af2aa1844f0113
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
45
46
47
48
49
50
51
package org.springblade.modules.yw.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import lombok.Data;
import java.io.Serializable;
 
/**
 * 救援队伍 excel 模板
 * @author zhongrj
 * @date 2024-10-29
 */
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class RescueTeamExcel implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @ColumnWidth(20)
    @ExcelProperty("企业名称")
    private String firmName;
 
    @ColumnWidth(20)
    @ExcelProperty("类型")
    private String type;
 
    @ColumnWidth(20)
    @ExcelProperty(value = "组名称")
    private String teamName;
 
    @ExcelProperty("组职务")
    private String teamJob;
 
    @ExcelProperty("负责人")
    private String perInCha;
 
    @ExcelProperty("职务")
    private String job;
 
    @ExcelProperty("负责人电话")
    private String perInChaPho;
 
    @ExcelProperty("负责人2")
    private String perInChaTwo;
 
    @ExcelProperty("负责人电话2")
    private String perInChaPhoTwo;
}