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 double dykeLength;
|
|
private double levelOneLength;
|
private double levelTwoLength;
|
private double levelThreeLength;
|
private double levelFourLength;
|
private double levelFiveLength;
|
|
}
|