forgeboot/forgeboot-webmvc/spec/build.gradle.kts
gewuyou ab035cce14 refactor(webmvc): Optimized the naming of CRUD interface methods
- Rename the delete method to deleteById to explicitly delete by ID
- Rename the delete(ids) method to deleteByIds, explicitly indicating bulk deletion- Rename the delete(entity) method to deleteByOne, explicitly deleting a single entity
- Rename the delete(entities) method to deleteByAll to explicitly delete entities in bulk
- Removed unused MapStruct dependencies
2025-05-29 22:31:13 +08:00

6 lines
110 B
Plaintext

dependencies {
compileOnly(libs.springBootStarter.jpa)
implementation(project(Modules.Webmvc.DTO))
}