package com.fzzy.igds.dzhwk.v1.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
/**
|
* @Description 仓房信息
|
* @Author CZT
|
* @Date 2025/02/24 09:35
|
*/
|
@Data
|
public class ApiV1Data1003 {
|
|
@PropertyDef(label = "仓房编码")
|
private String cfdm;
|
|
@PropertyDef(label = "仓房名称")
|
private String cfmc;
|
|
@PropertyDef(label = "仓房类型代码")
|
private String cflxdm;
|
|
@PropertyDef(label = "交付使用日期")
|
private String jfsyrq;
|
|
@PropertyDef(label = "地面结构")
|
private String dmjg;
|
|
@PropertyDef(label = "墙体结构")
|
private String qtjg;
|
|
@PropertyDef(label = "屋顶结构")
|
private String fdjg;
|
|
@PropertyDef(label = "屋架结构")
|
private String fjjg;
|
|
@PropertyDef(label = "设计储量", description = "单位:吨")
|
private Double sjcr;
|
|
@PropertyDef(label = "仓房高度", description = "单位:米")
|
private Double cwg;
|
|
@PropertyDef(label = "仓房长度", description = "单位:米")
|
private Double cwc;
|
|
@PropertyDef(label = "仓房宽度", description = "单位:米")
|
private Double cwk;
|
|
@PropertyDef(label = "保管员")
|
private String bgr;
|
|
@PropertyDef(label = "经度")
|
private Double jd;
|
|
@PropertyDef(label = "纬度")
|
private Double wd;
|
|
@PropertyDef(label = "更新时间")
|
private String zhgxsj;
|
|
}
|