| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import java.io.Serializable;
- /**
- * 行政区划或者流域机构
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class AdOrOrg extends BaseBean implements Serializable {
- //行政区划码或者流域机构id
- private String code;
- //行政区划名称或者机构名称
- private String name;
- //1流域2行政
- private String type;
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- }
|