package com.fzzy.push.sx2025.data;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @Description 陕西省平台2025版-空罐验收表
|
* @Author CZT
|
* @Date 2025/10/31 15:15
|
*/
|
@Data
|
public class SX2025Api1215 implements Serializable {
|
|
@PropertyDef(label = "空罐验收单号", description = "验收申请日期yyyyMMdd + 4位顺序号")
|
private String kgysdh;
|
|
@PropertyDef(label = "统一油罐编码" )
|
private String tyygbm;
|
|
@PropertyDef(label = "拟存品种代码")
|
private String ncpzdm;
|
|
@PropertyDef(label = "设计灌容")
|
private Double sjgr;
|
|
@PropertyDef(label = "实际储油品种最大罐容")
|
private Double sjcyzdgr;
|
|
@PropertyDef(label = "拟储油数量")
|
private Double jysj;
|
|
@PropertyDef(label = "是否擅自改变油罐结构")
|
private String sfszgdygjg;
|
|
@PropertyDef(label = "油罐有无渗漏锈蚀")
|
private String ygywslxs;
|
|
@PropertyDef(label = "罐基有无开裂、下沉现象")
|
private String gjywklxcxx;
|
|
@PropertyDef(label = "油罐地坪是否完全硬化")
|
private String ygdpsfwqyh;
|
|
@PropertyDef(label = "护油堤是否存在开裂缺口等情况")
|
private String hydsfzc;
|
|
@PropertyDef(label = "罐区内排水有无阀门控制")
|
private String gtfmsfzc;
|
|
@PropertyDef(label = "罐内是否清洁")
|
private String gnsfqj;
|
|
@PropertyDef(label = "爬梯是否安全")
|
private String ptsfaq;
|
|
@PropertyDef(label = "灌顶安全护栏是否完好")
|
private String gdaqhlsfwh;
|
|
@PropertyDef(label = "油罐区是否处于低洼点")
|
private String gqsfcydwd;
|
|
@PropertyDef(label = "验收时间")
|
private Date yssj;
|
|
@PropertyDef(label = "验收结论")
|
private String ysjl;
|
|
@PropertyDef(label = "整改意见")
|
private String zgyj;
|
|
@PropertyDef(label = "承储单位负责人")
|
private String ccdwfzr;
|
|
@PropertyDef(label = "验收人")
|
private String ysr;
|
|
@PropertyDef(label = "验收视频照片")
|
private String ysspzp;
|
|
@PropertyDef(label = "备注")
|
private String bz;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间")
|
private Date zhgxsj;
|
|
}
|