| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package cn.com.goldenwater.dcproj.model;
- /**
- * @author lhc
- * @date 2021/7/21 18:09
- */
- public class WorkInxMonth {
- public WorkInxMonth() {
- }
- private String adcd;//行政区代码
- private Integer inxStatValue;//指标(累计项) 数值:当月累计完成量
- private String timeRecord;//统计时间
- private Integer inxNumValue;//指标(分子项) 数值:当月完成量
- private String inxStatus;//指标进度: 0进度滞后;1进度正 常
- private Integer timeYear;//统计时间年份:2021
- private Integer timeMonth;//统计时间月份:6
- private Integer inxDenValue;//指标(分母项)数值:年度计划 量
- private Integer inxPctValue;//指标(百分率)数值:完成率
- public String getAdcd() {
- return adcd;
- }
- public void setAdcd(String adcd) {
- this.adcd = adcd;
- }
- public Integer getInxStatValue() {
- return inxStatValue;
- }
- public void setInxStatValue(Integer inxStatValue) {
- this.inxStatValue = inxStatValue;
- }
- public String getTimeRecord() {
- return timeRecord;
- }
- public void setTimeRecord(String timeRecord) {
- this.timeRecord = timeRecord;
- }
- public Integer getInxNumValue() {
- return inxNumValue;
- }
- public void setInxNumValue(Integer inxNumValue) {
- this.inxNumValue = inxNumValue;
- }
- public String getInxStatus() {
- return inxStatus;
- }
- public void setInxStatus(String inxStatus) {
- this.inxStatus = inxStatus;
- }
- public Integer getTimeYear() {
- return timeYear;
- }
- public void setTimeYear(Integer timeYear) {
- this.timeYear = timeYear;
- }
- public Integer getTimeMonth() {
- return timeMonth;
- }
- public void setTimeMonth(Integer timeMonth) {
- this.timeMonth = timeMonth;
- }
- public Integer getInxDenValue() {
- return inxDenValue;
- }
- public void setInxDenValue(Integer inxDenValue) {
- this.inxDenValue = inxDenValue;
- }
- public Integer getInxPctValue() {
- return inxPctValue;
- }
- public void setInxPctValue(Integer inxPctValue) {
- this.inxPctValue = inxPctValue;
- }
- }
|