| 1234567891011121314151617181920 |
- package me.zhengjie.archives.plus;
- /**
- * @Description 查询枚举类
- * @Date 2020-07-16 16:10
- */
- public enum QueryWapperEnum {
- LIKE(1), EQ(2);
- private final int value;
- QueryWapperEnum(int value) {
- this.value = value;
- }
- public int value() {
- return this.value;
- }
- }
|