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; private Integer sgCount; private Integer aqCount; private Integer zlCount; private Integer cameraCount; public Integer getSgCount() { return sgCount; } public void setSgCount(Integer sgCount) { this.sgCount = sgCount; } public Integer getAqCount() { return aqCount; } public void setAqCount(Integer aqCount) { this.aqCount = aqCount; } public Integer getZlCount() { return zlCount; } public void setZlCount(Integer zlCount) { this.zlCount = zlCount; } public Integer getCameraCount() { return cameraCount; } public void setCameraCount(Integer cameraCount) { this.cameraCount = cameraCount; } 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; } }