package com.javaweb.geo.vo;
|
|
/**
|
* @author mzy-cxy
|
*/
|
public class IndexVo {
|
/**
|
* 未协调
|
*/
|
private Integer projectStatus0;
|
|
/**
|
* 已协调
|
*/
|
private Integer projectStatus1;
|
|
/**
|
* 施工中
|
*/
|
private Integer projectStatus2;
|
|
/**
|
* 总进尺
|
*/
|
private Double footageCount;
|
|
/**
|
* 已完成进尺
|
*/
|
private Double footageCplCount;
|
|
/**
|
* 资料
|
*/
|
private Long fileCount;
|
|
|
public Integer getProjectStatus0() {
|
return projectStatus0;
|
}
|
|
public void setProjectStatus0(Integer projectStatus0) {
|
this.projectStatus0 = projectStatus0;
|
}
|
|
public Integer getProjectStatus1() {
|
return projectStatus1;
|
}
|
|
public void setProjectStatus1(Integer projectStatus1) {
|
this.projectStatus1 = projectStatus1;
|
}
|
|
public Integer getProjectStatus2() {
|
return projectStatus2;
|
}
|
|
public void setProjectStatus2(Integer projectStatus2) {
|
this.projectStatus2 = projectStatus2;
|
}
|
|
public Double getFootageCount() {
|
return footageCount;
|
}
|
|
public void setFootageCount(Double footageCount) {
|
this.footageCount = footageCount;
|
}
|
|
public Double getFootageCplCount() {
|
return footageCplCount;
|
}
|
|
public void setFootageCplCount(Double footageCplCount) {
|
this.footageCplCount = footageCplCount;
|
}
|
|
public Long getFileCount() {
|
return fileCount;
|
}
|
|
public void setFileCount(Long fileCount) {
|
this.fileCount = fileCount;
|
}
|
}
|