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;
|
}
|