DictCateVoBase.java 6.49 KB
package com.viontech.fanxing.code.vobase;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.viontech.fanxing.code.base.VoInterface;
import com.viontech.fanxing.code.model.DictCate;
import java.util.ArrayList;

public class DictCateVoBase extends DictCate implements VoInterface<DictCate> {
    private DictCate dictCate;

    @JsonIgnore
    private ArrayList<Long> id_arr;

    @JsonIgnore
    private Long id_gt;

    @JsonIgnore
    private Long id_lt;

    @JsonIgnore
    private Long id_gte;

    @JsonIgnore
    private Long id_lte;

    @JsonIgnore
    private ArrayList<String> unid_arr;

    @JsonIgnore
    private String unid_like;

    @JsonIgnore
    private Boolean code_null;

    @JsonIgnore
    private ArrayList<String> code_arr;

    @JsonIgnore
    private String code_like;

    @JsonIgnore
    private ArrayList<String> name_arr;

    @JsonIgnore
    private String name_like;

    @JsonIgnore
    private Boolean note_null;

    @JsonIgnore
    private ArrayList<String> note_arr;

    @JsonIgnore
    private String note_like;

    @JsonIgnore
    private Boolean type_null;

    @JsonIgnore
    private ArrayList<String> type_arr;

    @JsonIgnore
    private String type_like;

    public DictCateVoBase() {
        this(null);
    }

    public DictCateVoBase(DictCate dictCate) {
        if(dictCate == null) {
            dictCate = new DictCate();
        }
        this.dictCate = dictCate;
    }

    @JsonIgnore
    public DictCate getModel() {
        return dictCate;
    }

    public void setModel(DictCate dictCate) {
        this.dictCate = dictCate;
    }

    public ArrayList<Long> getId_arr() {
        return id_arr;
    }

    public void setId_arr(ArrayList<Long> id_arr) {
        this.id_arr = id_arr;
    }

    public Long getId_gt() {
        return id_gt;
    }

    public void setId_gt(Long id_gt) {
        this.id_gt = id_gt;
    }

    public Long getId_lt() {
        return id_lt;
    }

    public void setId_lt(Long id_lt) {
        this.id_lt = id_lt;
    }

    public Long getId_gte() {
        return id_gte;
    }

    public void setId_gte(Long id_gte) {
        this.id_gte = id_gte;
    }

    public Long getId_lte() {
        return id_lte;
    }

    public void setId_lte(Long id_lte) {
        this.id_lte = id_lte;
    }

    public Long getId() {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        return this.getModel().getId();
    }

    public void setId(Long id) {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        this.getModel().setId(id);
    }

    public ArrayList<String> getUnid_arr() {
        return unid_arr;
    }

    public void setUnid_arr(ArrayList<String> unid_arr) {
        this.unid_arr = unid_arr;
    }

    public String getUnid_like() {
        return unid_like;
    }

    public void setUnid_like(String unid_like) {
        this.unid_like = unid_like;
    }

    public String getUnid() {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        return this.getModel().getUnid();
    }

    public void setUnid(String unid) {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        this.getModel().setUnid(unid);
    }

    public Boolean getCode_null() {
        return code_null;
    }

    public void setCode_null(Boolean code_null) {
        this.code_null = code_null;
    }

    public ArrayList<String> getCode_arr() {
        return code_arr;
    }

    public void setCode_arr(ArrayList<String> code_arr) {
        this.code_arr = code_arr;
    }

    public String getCode_like() {
        return code_like;
    }

    public void setCode_like(String code_like) {
        this.code_like = code_like;
    }

    public String getCode() {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        return this.getModel().getCode();
    }

    public void setCode(String code) {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        this.getModel().setCode(code);
    }

    public ArrayList<String> getName_arr() {
        return name_arr;
    }

    public void setName_arr(ArrayList<String> name_arr) {
        this.name_arr = name_arr;
    }

    public String getName_like() {
        return name_like;
    }

    public void setName_like(String name_like) {
        this.name_like = name_like;
    }

    public String getName() {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        return this.getModel().getName();
    }

    public void setName(String name) {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        this.getModel().setName(name);
    }

    public Boolean getNote_null() {
        return note_null;
    }

    public void setNote_null(Boolean note_null) {
        this.note_null = note_null;
    }

    public ArrayList<String> getNote_arr() {
        return note_arr;
    }

    public void setNote_arr(ArrayList<String> note_arr) {
        this.note_arr = note_arr;
    }

    public String getNote_like() {
        return note_like;
    }

    public void setNote_like(String note_like) {
        this.note_like = note_like;
    }

    public String getNote() {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        return this.getModel().getNote();
    }

    public void setNote(String note) {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        this.getModel().setNote(note);
    }

    public Boolean getType_null() {
        return type_null;
    }

    public void setType_null(Boolean type_null) {
        this.type_null = type_null;
    }

    public ArrayList<String> getType_arr() {
        return type_arr;
    }

    public void setType_arr(ArrayList<String> type_arr) {
        this.type_arr = type_arr;
    }

    public String getType_like() {
        return type_like;
    }

    public void setType_like(String type_like) {
        this.type_like = type_like;
    }

    public String getType() {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        return this.getModel().getType();
    }

    public void setType(String type) {
        if(getModel() == null ){
            throw new RuntimeException("model is null");
        }
        this.getModel().setType(type);
    }
}