Commit bb374985 authored by 单奇雲's avatar 单奇雲

common

parent fc9c31ed
package com.yeejoin.amos.fas.core.common.response;
import java.util.List;
public class RegionTreeResponse {
private Long id;
private String name;
private String code;
private Long parentId;
private String ue4Location;
private String ue4Rotation;
private String ue4Extent;
private Boolean isBind;
private List<RegionTreeResponse> children;
private String type;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public Long getParentId() {
return parentId;
}
public void setParentId(Long parentId) {
this.parentId = parentId;
}
public String getUe4Location() {
return ue4Location;
}
public void setUe4Location(String ue4Location) {
this.ue4Location = ue4Location;
}
public String getUe4Rotation() {
return ue4Rotation;
}
public void setUe4Rotation(String ue4Rotation) {
this.ue4Rotation = ue4Rotation;
}
public String getUe4Extent() {
return ue4Extent;
}
public void setUe4Extent(String ue4Extent) {
this.ue4Extent = ue4Extent;
}
public Boolean getIsBind() {
return isBind;
}
public void setIsBind(Boolean isBind) {
this.isBind = isBind;
}
public List<RegionTreeResponse> getChildren() {
return children;
}
public void setChildren(List<RegionTreeResponse> children) {
this.children = children;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment