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