zrj
2024-10-30 55a7406f78eaf19c49c58d6ae9cfc0dcf098ba2e
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
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;
}