a889de204af132bf67ea4c49d969ed8f567c46a4.svn-base 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. import java.util.List;
  5. /**
  6. * Created by jinshui on 2020/5/8.
  7. */
  8. public class TreeDto implements Serializable {
  9. @ApiModelProperty("主键id")
  10. private String id;
  11. @ApiModelProperty("行政区划编码")
  12. private String adCode;
  13. @ApiModelProperty("行政区划名称")
  14. private String adName;
  15. @ApiModelProperty("登记表id")
  16. private String rgstrId;
  17. @ApiModelProperty("督查对象id")
  18. private String objId;
  19. @ApiModelProperty("是否贫困,1是,0否")
  20. private String isPoveryt;
  21. @ApiModelProperty("子列表")
  22. private List<TreeDto> attCountryDtoList;
  23. public String getIsPoveryt() {
  24. return isPoveryt;
  25. }
  26. public void setIsPoveryt(String isPoveryt) {
  27. this.isPoveryt = isPoveryt;
  28. }
  29. public String getObjId() {
  30. return objId;
  31. }
  32. public void setObjId(String objId) {
  33. this.objId = objId;
  34. }
  35. public String getId() {
  36. return id;
  37. }
  38. public void setId(String id) {
  39. this.id = id;
  40. }
  41. public String getAdCode() {
  42. return adCode;
  43. }
  44. public void setAdCode(String adCode) {
  45. this.adCode = adCode;
  46. }
  47. public String getAdName() {
  48. return adName;
  49. }
  50. public void setAdName(String adName) {
  51. this.adName = adName;
  52. }
  53. public String getRgstrId() {
  54. return rgstrId;
  55. }
  56. public void setRgstrId(String rgstrId) {
  57. this.rgstrId = rgstrId;
  58. }
  59. public List<TreeDto> getAttCountryDtoList() {
  60. return attCountryDtoList;
  61. }
  62. public void setAttCountryDtoList(List<TreeDto> attCountryDtoList) {
  63. this.attCountryDtoList = attCountryDtoList;
  64. }
  65. }