docs(core): add KDoc documentation to controllers, services, and entities

Add descriptive KDoc comments to all REST controllers, service interfaces,
entity classes, and mappers to improve code readability and maintainability.
Include annotations for controller-level API documentation.
This commit is contained in:
2026-05-21 18:47:23 +08:00
parent 5bb836eafc
commit 20660b91dc
24 changed files with 92 additions and 33 deletions
@@ -2,6 +2,9 @@ package com.msksbr.bookmgr.controller
import org.springframework.web.bind.annotation.RestController
/*
* 管理端图书接口
*/
@RestController
class AdminBookController {
}