| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.List;
- /**
- * Created by jinshui on 2020/5/8.
- */
- public class TreeDto implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("行政区划编码")
- private String adCode;
- @ApiModelProperty("行政区划名称")
- private String adName;
- @ApiModelProperty("登记表id")
- private String rgstrId;
- @ApiModelProperty("督查对象id")
- private String objId;
- @ApiModelProperty("是否贫困,1是,0否")
- private String isPoveryt;
- @ApiModelProperty("子列表")
- private List<TreeDto> attCountryDtoList;
- public String getIsPoveryt() {
- return isPoveryt;
- }
- public void setIsPoveryt(String isPoveryt) {
- this.isPoveryt = isPoveryt;
- }
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public List<TreeDto> getAttCountryDtoList() {
- return attCountryDtoList;
- }
- public void setAttCountryDtoList(List<TreeDto> attCountryDtoList) {
- this.attCountryDtoList = attCountryDtoList;
- }
- }
|