| package com.fzzy.push.nx2024.dto; | 
|   | 
| import com.alibaba.fastjson.annotation.JSONField; | 
| import com.bstek.dorado.annotation.PropertyDef; | 
| import lombok.Data; | 
| import java.io.Serializable; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @Description 宁夏省平台2024版-库区信息 | 
|  * @Author CZT | 
|  * @Date 2024/7/25 14:41 | 
|  */ | 
| @Data | 
| public class Nx2024Api2402 implements Serializable { | 
|   | 
|     @PropertyDef(label = "库区代码") | 
|     private String kqdm; | 
|   | 
|     @PropertyDef(label = "统一库区编码") | 
|     private String tykqbm; | 
|   | 
|     @PropertyDef(label = "单位代码") | 
|     private String dwdm; | 
|   | 
|     @PropertyDef(label = "库区名称") | 
|     private String kqmc; | 
|   | 
|     @PropertyDef(label = "库区地址") | 
|     private String kqdz; | 
|   | 
|     @PropertyDef(label = "行政区划代码") | 
|     private String xzqhdm; | 
|   | 
|     @PropertyDef(label = "库区产权", description = "1: 自有 2:租赁 3:共有 4:混合 9:其他") | 
|     private String kqcq; | 
|   | 
|     @PropertyDef(label = "有效仓容") | 
|     private Double yxcr; | 
|   | 
|     @PropertyDef(label = "有效罐容") | 
|     private Double yxgr; | 
|   | 
|     @PropertyDef(label = "占地面积") | 
|     private Double zdmj; | 
|   | 
|     @PropertyDef(label = "仓房数") | 
|     private Integer cfs; | 
|   | 
|     @PropertyDef(label = "油罐数") | 
|     private Integer ygs; | 
|   | 
|     @PropertyDef(label = "库区经度") | 
|     private Double jd; | 
|   | 
|     @PropertyDef(label = "库区纬度") | 
|     private Double wd; | 
|   | 
|     @PropertyDef(label = "库区状态", description = "1:正常,2:退储") | 
|     private String kqzt; | 
|   | 
|     @PropertyDef(label = "操作标志") | 
|     private String czbz; | 
|   | 
|     @PropertyDef(label = "最后更新时间") | 
|     @JSONField(format = "yyyy-MM-dd HH:mm:ss") | 
|     private Date zhgxsj; | 
|   | 
| } |