package com.panzhihua.common.model.vos.community;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass;
|
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @description: 批量导出隐患报告台账管理
|
* @author: Null
|
* @date: 2021/7/28 17:11
|
*/
|
@Data
|
public class ComSwDangerReportExcelVO implements Serializable {
|
/**
|
* 小区名称
|
*/
|
@ExcelProperty(value = "安全隐患地址" ,index = 0)
|
private String address;
|
/**
|
* 隐患简述
|
*/
|
@ExcelProperty(value = "隐患简述" ,index = 1)
|
private String dagerDescription;
|
|
/**
|
* 隐患类型
|
*/
|
@ExcelProperty(value = "隐患类型" ,index = 2)
|
private String dangerType;
|
|
/**
|
* 风险等级
|
*/
|
@ExcelProperty(value = "风险等级" ,index = 3)
|
private String dangerLevel;
|
|
/**
|
* 巡查人员
|
*/
|
@ExcelProperty(value = "巡查人员" ,index = 4)
|
private String patrolPerson;
|
|
/**
|
* 联系电话
|
*/
|
@ExcelProperty(value = "联系电话" ,index = 5)
|
private String patrolPersonPhone;
|
|
/**
|
* 备注
|
*/
|
@ExcelProperty(value = "备注" ,index = 6)
|
private String remark;
|
|
}
|