| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import java.io.Serializable;
- /**
- * entity:AttAdBase
- * 树形结构信息:含机构+批次+组
- *
- * @author wanghang
- * @date 2019-2-19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class OrganizationAndBatchAndGroup extends BaseBean implements Serializable {
- //机构id或批次id或组id
- private String code;
- //督查机构名或批次名或组名
- private String name;
- //1是监督司2是各委3是批次4是督查组
- 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;
- }
- }
|