| 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; | 
|     } | 
| } |