-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.通用枚举查询无法扫描到 QueryTypeEnum 2.前端路径校验错误 3.部分命名格式修复
- Loading branch information
Showing
5 changed files
with
98 additions
and
6 deletions.
There are no files selected for viewing
93 changes: 93 additions & 0 deletions
93
continew-admin-tool/src/main/java/top/charles7c/continew/admin/tool/enums/QueryTypeEnum.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
* Copyright (c) 2022-present Charles7c Authors. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package top.charles7c.continew.admin.tool.enums; | ||
|
||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
import top.charles7c.continew.starter.data.mybatis.plus.enums.IBaseEnum; | ||
|
||
/** | ||
* 查询类型枚举 | ||
* | ||
* @author Charles7c | ||
* @since 2023/8/6 10:49 | ||
*/ | ||
@Getter | ||
@RequiredArgsConstructor | ||
public enum QueryTypeEnum implements IBaseEnum<Integer> { | ||
|
||
/** | ||
* 等值查询,例如:WHERE `age` = 18 | ||
*/ | ||
EQUAL(1, "="), | ||
/** | ||
* 非等值查询,例如:WHERE `age` != 18 | ||
*/ | ||
NOT_EQUAL(2, "!="), | ||
/** | ||
* 大于查询,例如:WHERE `age` > 18 | ||
*/ | ||
GREATER_THAN(3, ">"), | ||
/** | ||
* 小于查询,例如:WHERE `age` < 18 | ||
*/ | ||
LESS_THAN(4, "<"), | ||
/** | ||
* 大于等于查询,例如:WHERE `age` >= 18 | ||
*/ | ||
GREATER_THAN_OR_EQUAL(5, ">="), | ||
/** | ||
* 小于等于查询,例如:WHERE `age` <= 18 | ||
*/ | ||
LESS_THAN_OR_EQUAL(6, "<="), | ||
/** | ||
* 范围查询,例如:WHERE `age` BETWEEN 10 AND 18 | ||
*/ | ||
BETWEEN(7, "BETWEEN"), | ||
/** | ||
* 左模糊查询,例如:WHERE `nickname` LIKE '%s' | ||
*/ | ||
LEFT_LIKE(8, "LIKE '%s'"), | ||
/** | ||
* 中模糊查询,例如:WHERE `nickname` LIKE '%s%' | ||
*/ | ||
INNER_LIKE(9, "LIKE '%s%'"), | ||
/** | ||
* 右模糊查询,例如:WHERE `nickname` LIKE 's%' | ||
*/ | ||
RIGHT_LIKE(10, "LIKE 's%'"), | ||
/** | ||
* 包含查询,例如:WHERE `age` IN (10, 20, 30) | ||
*/ | ||
IN(11, "IN"), | ||
/** | ||
* 不包含查询,例如:WHERE `age` NOT IN (20, 30) | ||
*/ | ||
NOT_IN(12, "NOT IN"), | ||
/** | ||
* 空查询,例如:WHERE `email` IS NULL | ||
*/ | ||
IS_NULL(13, "IS NULL"), | ||
/** | ||
* 非空查询,例如:WHERE `email` IS NOT NULL | ||
*/ | ||
IS_NOT_NULL(14, "IS NOT NULL"),; | ||
|
||
private final Integer value; | ||
private final String description; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters