|
|
@ -1,10 +1,9 @@ |
|
|
|
package com.epmet.excel; |
|
|
|
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
/** |
|
|
|
* 重点危化品企业 |
|
|
|
* |
|
|
@ -14,68 +13,36 @@ import java.util.Date; |
|
|
|
@Data |
|
|
|
public class IcDangerousChemicalsExcel { |
|
|
|
|
|
|
|
@Excel(name = "ID") |
|
|
|
private String id; |
|
|
|
|
|
|
|
@Excel(name = "客户Id") |
|
|
|
private String customerId; |
|
|
|
|
|
|
|
@Excel(name = "所属组织机构Id") |
|
|
|
private String agencyId; |
|
|
|
|
|
|
|
@Excel(name = "agencyId的所有上级,包含自己") |
|
|
|
private String agencyIdPath; |
|
|
|
|
|
|
|
@Excel(name = "来源【新增:add 导入:import 】") |
|
|
|
private String sourceType; |
|
|
|
|
|
|
|
@Excel(name = "企业名称") |
|
|
|
@ExcelProperty(value = "企业名称") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String name; |
|
|
|
|
|
|
|
@Excel(name = "企业类型【字典表ic_coverage_category_dict key:dangerous_chemicals】") |
|
|
|
private String category; |
|
|
|
|
|
|
|
@Excel(name = "周边安全距离,单位公里") |
|
|
|
private String safeDistance; |
|
|
|
@ExcelProperty(value = "企业类型") |
|
|
|
@ColumnWidth(20) |
|
|
|
private String categoryName; |
|
|
|
|
|
|
|
@Excel(name = "危化品种类【字典表 ic_danger_type】") |
|
|
|
private Integer dangerType; |
|
|
|
@ExcelProperty(value = "周边安全距离") |
|
|
|
@ColumnWidth(20) |
|
|
|
private String safeDistanceName; |
|
|
|
|
|
|
|
@Excel(name = "负责人姓名") |
|
|
|
private String principalName; |
|
|
|
|
|
|
|
@Excel(name = "负责人电话") |
|
|
|
private String principalMobile; |
|
|
|
@ExcelProperty(value = "危化品种类") |
|
|
|
@ColumnWidth(20) |
|
|
|
private String dangerTypeName; |
|
|
|
|
|
|
|
@Excel(name = "经营地址") |
|
|
|
@ExcelProperty(value = "经营地址") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String address; |
|
|
|
|
|
|
|
@Excel(name = "经度") |
|
|
|
private String longitude; |
|
|
|
@ExcelProperty(value = "负责人") |
|
|
|
@ColumnWidth(20) |
|
|
|
private String principalName; |
|
|
|
|
|
|
|
@Excel(name = "纬度") |
|
|
|
private String latitude; |
|
|
|
@ExcelProperty(value = "联系电话") |
|
|
|
@ColumnWidth(20) |
|
|
|
private String principalMobile; |
|
|
|
|
|
|
|
@Excel(name = "备注") |
|
|
|
@ExcelProperty(value = "备注") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String remark; |
|
|
|
|
|
|
|
@Excel(name = "删除标识") |
|
|
|
private String delFlag; |
|
|
|
|
|
|
|
@Excel(name = "乐观锁") |
|
|
|
private Integer revision; |
|
|
|
|
|
|
|
@Excel(name = "创建人") |
|
|
|
private String createdBy; |
|
|
|
|
|
|
|
@Excel(name = "创建时间") |
|
|
|
private Date createdTime; |
|
|
|
|
|
|
|
@Excel(name = "更新人") |
|
|
|
private String updatedBy; |
|
|
|
|
|
|
|
@Excel(name = "更新时间") |
|
|
|
private Date updatedTime; |
|
|
|
|
|
|
|
|
|
|
|
} |