051507848b5dfced9b73fc1f730aeeb30da5057f.svn-base 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. * entity:AttAdBase
  7. * 树形结构信息:含机构+批次+组
  8. *
  9. * @author wanghang
  10. * @date 2019-2-19
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class OrganizationAndBatchAndGroup extends BaseBean implements Serializable {
  14. //机构id或批次id或组id
  15. private String code;
  16. //督查机构名或批次名或组名
  17. private String name;
  18. //1是监督司2是各委3是批次4是督查组
  19. private String type;
  20. public String getCode() {
  21. return code;
  22. }
  23. public void setCode(String code) {
  24. this.code = code;
  25. }
  26. public String getName() {
  27. return name;
  28. }
  29. public void setName(String name) {
  30. this.name = name;
  31. }
  32. public String getType() {
  33. return type;
  34. }
  35. public void setType(String type) {
  36. this.type = type;
  37. }
  38. }