czt
2025-06-11 283da741b2429cf5a53786e5ee1b5528b757fdf6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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 ApiV1Data1004 {
 
    @PropertyDef(label = "廒间代码")
    private String ajdh;
 
    @PropertyDef(label = "廒间名称")
    private String ajmc;
 
    @PropertyDef(label = "仓房(或油罐)编码")
    private String cfbh;
 
    @PropertyDef(label = "廒间长度")
    private double ajcd;
 
    @PropertyDef(label = "廒间宽度")
    private double ajkd;
 
    @PropertyDef(label = "廒间高度")
    private double ajgd;
 
    @PropertyDef(label = "廒间设计仓容")
    private double ajsjcr;
 
    @PropertyDef(label = "廒间启用日期")
    private String ajqyrq;
 
    @PropertyDef(label = "廒间状态")
    private String ajzt;
 
    @PropertyDef(label = "最后更新时间")
    private String zhgxsj;
}