package cn.gistack.sm.resDataCheck.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;
|
|
@Data
|
@ColumnWidth(25)
|
@HeadRowHeight(20)
|
@ContentRowHeight(18)
|
public class QualityManageExcel implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 水库id
|
*/
|
@ExcelProperty(value = "序号")
|
private Integer no;
|
|
//水库名称
|
@ExcelProperty("水库名称")
|
private String resName;
|
|
/**
|
* 数据来源
|
*/
|
@ExcelProperty("数据来源")
|
private String flag;
|
|
//市(州)
|
@ExcelProperty("市(州)")
|
private String cityName;
|
|
|
|
//县(区)
|
@ExcelProperty("县(区)")
|
private String countyName;
|
|
//注册登记号
|
@ExcelProperty("注册登记号")
|
private String resRegCode;
|
|
//工程规模
|
@ExcelProperty("工程规模")
|
private String engScal;
|
|
//是否有闸
|
@ExcelProperty("是否有闸")
|
private String isGate;
|
|
|
//是否病险
|
@ExcelProperty("是否病险")
|
private String isDanger;
|
|
//实时水位
|
@ExcelProperty("当前水位(m)")
|
private String rz;
|
|
//堰顶高程
|
@ExcelProperty("堰顶高程(m)")
|
private String tbWeirTopElevation;
|
|
//主汛期限制水位
|
@ExcelProperty("汛限水位(m)")
|
private String tbFlseLimStag;
|
|
//正常蓄水位
|
@ExcelProperty("正常水位(m)")
|
private String tbNormPoolStag;
|
|
|
//控制运行水位
|
@ExcelProperty("控制水位(m)")
|
private String tbControlZ;
|
|
|
//设计洪水位
|
@ExcelProperty("设计水位(m)")
|
private String tbDesFlStag;
|
|
|
//校核洪水位
|
@ExcelProperty("校核水位(m)")
|
private String tbCheckFlStag;
|
|
|
//坝顶高程
|
@ExcelProperty("坝顶高程(m)")
|
private String tbDamTopElevation;
|
|
//死水位
|
@ExcelProperty("死水位(m)")
|
private String tbDeadStag;
|
|
//校验时间
|
@ExcelProperty("校验时间")
|
private String createTime;
|
|
//备注
|
@ExcelProperty("备注")
|
@ColumnWidth(50)
|
private String remark;
|
|
|
}
|