DictCodeVoBase.java 8.62 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
package com.viontech.fanxing.commons.vobase;

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

public class DictCodeVoBase extends DictCode implements VoInterface<DictCode> {
    private DictCode dictCode;

    @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 ArrayList<Long> cateId_arr;

    @JsonIgnore
    private Long cateId_gt;

    @JsonIgnore
    private Long cateId_lt;

    @JsonIgnore
    private Long cateId_gte;

    @JsonIgnore
    private Long cateId_lte;

    @JsonIgnore
    private Boolean parentId_null;

    @JsonIgnore
    private ArrayList<Long> parentId_arr;

    @JsonIgnore
    private Long parentId_gt;

    @JsonIgnore
    private Long parentId_lt;

    @JsonIgnore
    private Long parentId_gte;

    @JsonIgnore
    private Long parentId_lte;

    @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;

    public DictCodeVoBase() {
        this(null);
    }

    public DictCodeVoBase(DictCode dictCode) {
        if(dictCode == null) {
            dictCode = new DictCode();
        }
        this.dictCode = dictCode;
    }

    @JsonIgnore
    public DictCode getModel() {
        return dictCode;
    }

    public void setModel(DictCode dictCode) {
        this.dictCode = dictCode;
    }

    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 ArrayList<Long> getCateId_arr() {
        return cateId_arr;
    }

    public void setCateId_arr(ArrayList<Long> cateId_arr) {
        this.cateId_arr = cateId_arr;
    }

    public Long getCateId_gt() {
        return cateId_gt;
    }

    public void setCateId_gt(Long cateId_gt) {
        this.cateId_gt = cateId_gt;
    }

    public Long getCateId_lt() {
        return cateId_lt;
    }

    public void setCateId_lt(Long cateId_lt) {
        this.cateId_lt = cateId_lt;
    }

    public Long getCateId_gte() {
        return cateId_gte;
    }

    public void setCateId_gte(Long cateId_gte) {
        this.cateId_gte = cateId_gte;
    }

    public Long getCateId_lte() {
        return cateId_lte;
    }

    public void setCateId_lte(Long cateId_lte) {
        this.cateId_lte = cateId_lte;
    }

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

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

    public Boolean getParentId_null() {
        return parentId_null;
    }

    public void setParentId_null(Boolean parentId_null) {
        this.parentId_null = parentId_null;
    }

    public ArrayList<Long> getParentId_arr() {
        return parentId_arr;
    }

    public void setParentId_arr(ArrayList<Long> parentId_arr) {
        this.parentId_arr = parentId_arr;
    }

    public Long getParentId_gt() {
        return parentId_gt;
    }

    public void setParentId_gt(Long parentId_gt) {
        this.parentId_gt = parentId_gt;
    }

    public Long getParentId_lt() {
        return parentId_lt;
    }

    public void setParentId_lt(Long parentId_lt) {
        this.parentId_lt = parentId_lt;
    }

    public Long getParentId_gte() {
        return parentId_gte;
    }

    public void setParentId_gte(Long parentId_gte) {
        this.parentId_gte = parentId_gte;
    }

    public Long getParentId_lte() {
        return parentId_lte;
    }

    public void setParentId_lte(Long parentId_lte) {
        this.parentId_lte = parentId_lte;
    }

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

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

    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);
    }
}