VoucherLevelEnum.java 495 Bytes
Newer Older
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
package pwc.taxtech.atms.constant.enums;

public enum VoucherLevelEnum {
    FirstSort(1,"运算字符查询"),

    SecondSort(2,"like字段查询"),

    ThirdSort(3,"IsNull查询");

    private int code;
    private String description;

    VoucherLevelEnum(int code, String description) {
        this.code = code;
        this.description = description;
    }

    public int getCode() {
        return code;
    }

    public String getDescription() {
        return description;
    }
}