PopulationBase.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. package com.yihu.wlyy.entity.statistics;
  2. import com.yihu.wlyy.entity.IdEntity;
  3. import javax.persistence.Entity;
  4. import javax.persistence.Table;
  5. /**
  6. * 人口基数
  7. *
  8. * @author lyr
  9. */
  10. @Entity
  11. @Table(name = "wlyy_people_num")
  12. public class PopulationBase extends IdEntity implements java.io.Serializable{
  13. // 行政区划代码
  14. private String code;
  15. // 行政区划名称
  16. private String name;
  17. // 人口数
  18. private Integer num;
  19. // 类别 1市 2区
  20. private String type;
  21. // 年份
  22. private Integer year;
  23. // 高血压发病数
  24. private Integer gxyNum;
  25. // 糖尿病发布数
  26. private Integer tnbNum;
  27. // 65岁以上老年人口数
  28. private Integer sixFiveNum;
  29. // 高血压任务数
  30. private Integer gxyTaskNum;
  31. // 糖尿病任务数
  32. private Integer tnbTaskNum;
  33. // 65岁以上老年人口任务数
  34. private Integer sixFiveTaskNum;
  35. // 户籍人口任务数
  36. private Integer taskNum;
  37. public String getCode() {
  38. return code;
  39. }
  40. public void setCode(String code) {
  41. this.code = code;
  42. }
  43. public String getName() {
  44. return name;
  45. }
  46. public void setName(String name) {
  47. this.name = name;
  48. }
  49. public Integer getNum() {
  50. return num;
  51. }
  52. public void setNum(Integer num) {
  53. this.num = num;
  54. }
  55. public String getType() {
  56. return type;
  57. }
  58. public void setType(String type) {
  59. this.type = type;
  60. }
  61. public Integer getYear() {
  62. return year;
  63. }
  64. public void setYear(Integer year) {
  65. this.year = year;
  66. }
  67. public Integer getGxyNum() {
  68. return gxyNum;
  69. }
  70. public void setGxyNum(Integer gxyNum) {
  71. this.gxyNum = gxyNum;
  72. }
  73. public Integer getTnbNum() {
  74. return tnbNum;
  75. }
  76. public void setTnbNum(Integer tnbNum) {
  77. this.tnbNum = tnbNum;
  78. }
  79. public Integer getSixFiveNum() {
  80. return sixFiveNum;
  81. }
  82. public void setSixFiveNum(Integer sixFiveNum) {
  83. this.sixFiveNum = sixFiveNum;
  84. }
  85. public Integer getGxyTaskNum() {
  86. return gxyTaskNum;
  87. }
  88. public void setGxyTaskNum(Integer gxyTaskNum) {
  89. this.gxyTaskNum = gxyTaskNum;
  90. }
  91. public Integer getTnbTaskNum() {
  92. return tnbTaskNum;
  93. }
  94. public void setTnbTaskNum(Integer tnbTaskNum) {
  95. this.tnbTaskNum = tnbTaskNum;
  96. }
  97. public Integer getSixFiveTaskNum() {
  98. return sixFiveTaskNum;
  99. }
  100. public void setSixFiveTaskNum(Integer sixFiveTaskNum) {
  101. this.sixFiveTaskNum = sixFiveTaskNum;
  102. }
  103. public Integer getTaskNum() {
  104. return taskNum;
  105. }
  106. public void setTaskNum(Integer taskNum) {
  107. this.taskNum = taskNum;
  108. }
  109. }