|
|
@ -13,27 +13,31 @@ import lombok.Data; |
|
|
|
@Data |
|
|
|
public class IcDangerousChemicalsExcel { |
|
|
|
|
|
|
|
@ExcelProperty(value = "所属组织") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String gridName; |
|
|
|
|
|
|
|
@ExcelProperty(value = "企业名称") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String name; |
|
|
|
|
|
|
|
@ExcelProperty(value = "企业类型") |
|
|
|
@ExcelProperty(value = "企业类别") |
|
|
|
@ColumnWidth(20) |
|
|
|
private String categoryName; |
|
|
|
|
|
|
|
@ExcelProperty(value = "周边安全距离") |
|
|
|
@ColumnWidth(20) |
|
|
|
private String safeDistanceName; |
|
|
|
// @ExcelProperty(value = "周边安全距离")
|
|
|
|
// @ColumnWidth(20)
|
|
|
|
// private String safeDistanceName;
|
|
|
|
//
|
|
|
|
// @ExcelProperty(value = "危化品种类")
|
|
|
|
// @ColumnWidth(20)
|
|
|
|
// private String dangerTypeName;
|
|
|
|
|
|
|
|
@ExcelProperty(value = "危化品种类") |
|
|
|
@ColumnWidth(20) |
|
|
|
private String dangerTypeName; |
|
|
|
|
|
|
|
@ExcelProperty(value = "经营地址") |
|
|
|
@ExcelProperty(value = "企业地址") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String address; |
|
|
|
|
|
|
|
@ExcelProperty(value = "负责人") |
|
|
|
@ExcelProperty(value = "联系人") |
|
|
|
@ColumnWidth(20) |
|
|
|
private String principalName; |
|
|
|
|
|
|
@ -41,8 +45,12 @@ public class IcDangerousChemicalsExcel { |
|
|
|
@ColumnWidth(20) |
|
|
|
private String principalMobile; |
|
|
|
|
|
|
|
@ExcelProperty(value = "备注") |
|
|
|
@ExcelProperty(value = "安全负责人") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String securityPrincipalName; |
|
|
|
|
|
|
|
@ExcelProperty(value = "安全负责电话人") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String remark; |
|
|
|
private String securityPrincipalMobile; |
|
|
|
|
|
|
|
} |