c18d9b442446c29e2f508407408c99577a9880e0.svn-base 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. /**
  7. * entity:AttPkxBase
  8. *
  9. * @author lune
  10. * @date 2019-6-27
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class AttPkxBase extends BaseBean implements Serializable {
  14. @ApiModelProperty("扶贫县编码")
  15. private String code;
  16. @ApiModelProperty("贫困县名称")
  17. private String name;
  18. @ApiModelProperty("行政区等级")
  19. private String lv;
  20. @ApiModelProperty("14连片区")
  21. private String pkfq;
  22. @ApiModelProperty("连片外贫困县(1:是;2:否)")
  23. private String pw;
  24. @ApiModelProperty("国家扶贫开发工作重点县(1:是;2:否)")
  25. private String zdx;
  26. @ApiModelProperty("深度扶贫县(1:是;2:否)")
  27. private String sdpk;
  28. @ApiModelProperty("三区三州(1:是;2:否)")
  29. private String sqsz;
  30. @ApiModelProperty("边境县(1:是;2:否)")
  31. private String bjx;
  32. @ApiModelProperty("革命老区(1:是;2:否)")
  33. private String gblq;
  34. @ApiModelProperty("民族自治县、旗(1:是;2:否)")
  35. private String mzx;
  36. @ApiModelProperty("赣闽粤原中央苏区(1:是;2:否)")
  37. private String zysq;
  38. @ApiModelProperty("天窗县或深度嵌入县(1:是;2:否)")
  39. private String tcx;
  40. @ApiModelProperty("定点扶贫县(1:是;2:否)")
  41. private String ddfp;
  42. public AttPkxBase() {
  43. }
  44. public String getCode() {
  45. return code;
  46. }
  47. public void setCode(String code) {
  48. this.code = code;
  49. }
  50. public String getName() {
  51. return name;
  52. }
  53. public void setName(String name) {
  54. this.name = name;
  55. }
  56. public String getLv() {
  57. return lv;
  58. }
  59. public void setLv(String lv) {
  60. this.lv = lv;
  61. }
  62. public String getPkfq() {
  63. return pkfq;
  64. }
  65. public void setPkfq(String pkfq) {
  66. this.pkfq = pkfq;
  67. }
  68. public String getPw() {
  69. return pw;
  70. }
  71. public void setPw(String pw) {
  72. this.pw = pw;
  73. }
  74. public String getZdx() {
  75. return zdx;
  76. }
  77. public void setZdx(String zdx) {
  78. this.zdx = zdx;
  79. }
  80. public String getSdpk() {
  81. return sdpk;
  82. }
  83. public void setSdpk(String sdpk) {
  84. this.sdpk = sdpk;
  85. }
  86. public String getSqsz() {
  87. return sqsz;
  88. }
  89. public void setSqsz(String sqsz) {
  90. this.sqsz = sqsz;
  91. }
  92. public String getBjx() {
  93. return bjx;
  94. }
  95. public void setBjx(String bjx) {
  96. this.bjx = bjx;
  97. }
  98. public String getGblq() {
  99. return gblq;
  100. }
  101. public void setGblq(String gblq) {
  102. this.gblq = gblq;
  103. }
  104. public String getMzx() {
  105. return mzx;
  106. }
  107. public void setMzx(String mzx) {
  108. this.mzx = mzx;
  109. }
  110. public String getZysq() {
  111. return zysq;
  112. }
  113. public void setZysq(String zysq) {
  114. this.zysq = zysq;
  115. }
  116. public String getTcx() {
  117. return tcx;
  118. }
  119. public void setTcx(String tcx) {
  120. this.tcx = tcx;
  121. }
  122. public String getDdfp() {
  123. return ddfp;
  124. }
  125. public void setDdfp(String ddfp) {
  126. this.ddfp = ddfp;
  127. }
  128. @Override
  129. public String toString() {
  130. return "AttPkxBase [" + "code=" + code + ", name=" + name + ", lv=" + lv + ", pkfq=" + pkfq + ", pw=" + pw + ", zdx=" + zdx + ", sdpk=" + sdpk + ", sqsz=" + sqsz + ", bjx=" + bjx + ", gblq=" + gblq + ", mzx=" + mzx + ", zysq=" + zysq + ", tcx=" + tcx + ", ddfp=" + ddfp + "]";
  131. }
  132. }