c3073194c5e25b798a48ea654310692049f62941.svn-base 933 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import java.io.Serializable;
  5. /**
  6. * 行政区划或者流域机构
  7. */
  8. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  9. public class AdOrOrg extends BaseBean implements Serializable {
  10. //行政区划码或者流域机构id
  11. private String code;
  12. //行政区划名称或者机构名称
  13. private String name;
  14. //1流域2行政
  15. private String type;
  16. public String getCode() {
  17. return code;
  18. }
  19. public void setCode(String code) {
  20. this.code = code;
  21. }
  22. public String getName() {
  23. return name;
  24. }
  25. public void setName(String name) {
  26. this.name = name;
  27. }
  28. public String getType() {
  29. return type;
  30. }
  31. public void setType(String type) {
  32. this.type = type;
  33. }
  34. }