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;//五级提防长度
|
|
}
|