forgeboot/forgeboot-webmvc/spec/build.gradle.kts
gewuyou 3821c8b8c7 feat(spec): Add solid soft delete function
- Add softDelete method to the CrudServiceSpec interface to soft delete entities
- Implement softDelete method in the CrudServiceImplSpec class, including finding entities, marking delete status, and updating entities
- Added setDeleted abstract method, and implements specific tag deletion logic from subclasses
- Add log records, output error message when the corresponding entity cannot be found
- Introduce log extension functions and Core. EXTENSION module
2025-06-03 15:14:05 +08:00

7 lines
162 B
Plaintext

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