ee60b4f08e8c969b4ea2127030d691b265ad3e05.svn-base 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package cn.com.goldenwater.dcproj.model;
  2. /**
  3. * @author lhc
  4. * @date 2021/7/21 18:09
  5. */
  6. public class WorkInxMonth {
  7. public WorkInxMonth() {
  8. }
  9. private String adcd;//行政区代码
  10. private Integer inxStatValue;//指标(累计项) 数值:当月累计完成量
  11. private String timeRecord;//统计时间
  12. private Integer inxNumValue;//指标(分子项) 数值:当月完成量
  13. private String inxStatus;//指标进度: 0进度滞后;1进度正 常
  14. private Integer timeYear;//统计时间年份:2021
  15. private Integer timeMonth;//统计时间月份:6
  16. private Integer inxDenValue;//指标(分母项)数值:年度计划 量
  17. private Integer inxPctValue;//指标(百分率)数值:完成率
  18. public String getAdcd() {
  19. return adcd;
  20. }
  21. public void setAdcd(String adcd) {
  22. this.adcd = adcd;
  23. }
  24. public Integer getInxStatValue() {
  25. return inxStatValue;
  26. }
  27. public void setInxStatValue(Integer inxStatValue) {
  28. this.inxStatValue = inxStatValue;
  29. }
  30. public String getTimeRecord() {
  31. return timeRecord;
  32. }
  33. public void setTimeRecord(String timeRecord) {
  34. this.timeRecord = timeRecord;
  35. }
  36. public Integer getInxNumValue() {
  37. return inxNumValue;
  38. }
  39. public void setInxNumValue(Integer inxNumValue) {
  40. this.inxNumValue = inxNumValue;
  41. }
  42. public String getInxStatus() {
  43. return inxStatus;
  44. }
  45. public void setInxStatus(String inxStatus) {
  46. this.inxStatus = inxStatus;
  47. }
  48. public Integer getTimeYear() {
  49. return timeYear;
  50. }
  51. public void setTimeYear(Integer timeYear) {
  52. this.timeYear = timeYear;
  53. }
  54. public Integer getTimeMonth() {
  55. return timeMonth;
  56. }
  57. public void setTimeMonth(Integer timeMonth) {
  58. this.timeMonth = timeMonth;
  59. }
  60. public Integer getInxDenValue() {
  61. return inxDenValue;
  62. }
  63. public void setInxDenValue(Integer inxDenValue) {
  64. this.inxDenValue = inxDenValue;
  65. }
  66. public Integer getInxPctValue() {
  67. return inxPctValue;
  68. }
  69. public void setInxPctValue(Integer inxPctValue) {
  70. this.inxPctValue = inxPctValue;
  71. }
  72. }