xieb
2024-09-28 bfddec76b8349e076efc9ba10a6d7371a439cb1d
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
53
54
55
56
57
58
59
60
package cn.gistack.sm.sjztmd.statisticsVO;
 
import lombok.Data;
 
@Data
/**
 * 项目管理统计表格
 */
public class StatisticsTableProject {
 
    private String adCode;
 
    private String adName;
    private String adGrad;
 
    private String padCode;
 
    private String padName;
 
    //本月到位资金
    private double curMonthActualFund;
 
    //累计完成资金
    private double totalActualFund;
 
    private int resNum;
 
    private int bigNum;
 
    private int midNum;
 
    private int smallOneNum;
 
    private int smallTwoNum;
 
    private int resNumAll;
 
    private int bigNumAll;
 
    private int midNumAll;
 
    private int smallOneNumAll;
 
    private int smallTwoNumAll;
 
    private double dykeLength;//危害长度
    private double levelOneLength;//一级危害长度
    private double levelTwoLength;//二级危害长度
    private double levelThreeLength;//三级危害长度
    private double levelFourLength;//四级危害长度
    private double levelFiveLength;//五级危害长度
 
    private double dykeLengthAll;//提防总长度
    private double levelOneLengthAll;//一级提防长度
    private double levelTwoLengthAll;//二级提防长度
    private double levelThreeLengthAll;//三级提防长度
    private double levelFourLengthAll;//四级提防长度
    private double levelFiveLengthAll;//五级提防长度
 
}