czt
2024-06-28 4603da77459b23291191b52a35c5c8ccb9ac60e3
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
44
45
46
47
48
49
50
51
52
package com.fzzy.push.sx2023.data;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
/**
 * @Description 报表数据封装
 * @Author CZT
 * @Date 2024/4/23 17:30
 */
@Data
public class SXFinanceDto {
 
    @PropertyDef(label = "单位代码")
    private String DWDM;
 
    @PropertyDef(label = "库区代码")
    private String KQDM;
 
    @PropertyDef(label = "报表期号")
    private String BBSJ;
 
    @PropertyDef(label = "报表名")
    private String BBM;
 
    @PropertyDef(label = "指标序号")
    private String ZBXH;
 
    @PropertyDef(label = "指标名称")
    private String ZBMC;
 
    @PropertyDef(label = "指标值 1")
    private String ZBZ1;
 
    @PropertyDef(label = "指标值 2")
    private String ZBZ2;
 
    @PropertyDef(label = "操作标志")
    private String CZBZ;
 
    @PropertyDef(label = "最后更新时间")
    private String ZHGXSJ;
 
    public SXFinanceDto() {
    }
 
    public SXFinanceDto(String zbmc, String zbz1, String zbz2){
        this.ZBMC = zbmc;
        this.ZBZ1 = zbz1;
        this.ZBZ2 = zbz2;
    }
}