docs(core): enhance KDoc documentation across controllers, services, and entities

Add comprehensive API documentation to controller classes with planned
endpoint lists and path prefixes. Document security measures in auth
service implementation. Add field-level comments to Book entity.
This commit is contained in:
2026-05-21 19:03:54 +08:00
parent 20660b91dc
commit ca7788899a
25 changed files with 382 additions and 89 deletions
@@ -3,8 +3,15 @@ package com.msksbr.bookmgr.controller
import org.springframework.web.bind.annotation.RestController
/*
* 管理端图书接口
* 图书管理接口(面向管理员)
* 路径前缀(待定):/api/admin/books
*
* 计划接口:
* - 新增图书
* - 修改图书信息
* - 删除图书
* - 调整库存
*/
@RestController
class AdminBookController {
}
}