feat(dict): 实现参数数据字典校验注解 @InDict(#785)

新增注解 @InDict,用于在参数校验阶段判断传入值是否存在于指定的数据字典中。

BREAKING CHANGE: 无

Closes #785
This commit is contained in:
Ken
2025-05-22 13:30:27 +08:00
parent 501cfe5afa
commit ce2a7d2c96
5 changed files with 129 additions and 0 deletions

View File

@@ -46,6 +46,12 @@
<artifactId>easyexcel</artifactId>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>