mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-28 07:24:23 +08:00
- The SortDirection enumeration class has been added to sort directions - Added the PageQueryReq pagination query request class - Added the DeleteByIdsReq deletion request class - Added the DynamicSpecificationBuilder dynamic query building tool class - Added the PageResult pagination result class - Added the R Unified Response Encapsulation class - Added the SortCondition sorting condition class - Added relevant internationalization resource files
16 lines
446 B
Plaintext
16 lines
446 B
Plaintext
plugins{
|
|
alias(libs.plugins.forgeboot.i18n.keygen)
|
|
}
|
|
dependencies {
|
|
api(project(Modules.I18n.API))
|
|
api(project(Modules.TRACE.API))
|
|
implementation(libs.kotlinReflect)
|
|
compileOnly(libs.springBootDependencies.bom)
|
|
compileOnly(libs.jackson.annotations)
|
|
compileOnly(libs.springBootStarter.jpa)
|
|
compileOnly(libs.springBootStarter.validation)
|
|
}
|
|
i18nKeyGen {
|
|
rootPackage.set("com.gewuyou.forgeboot.webmvc.dto.i18n")
|
|
}
|