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:
@@ -3,8 +3,15 @@ package com.msksbr.bookmgr.controller
|
||||
import org.springframework.web.bind.annotation.RestController
|
||||
|
||||
/*
|
||||
* 管理端图书接口
|
||||
* 图书管理接口(面向管理员)
|
||||
* 路径前缀(待定):/api/admin/books
|
||||
*
|
||||
* 计划接口:
|
||||
* - 新增图书
|
||||
* - 修改图书信息
|
||||
* - 删除图书
|
||||
* - 调整库存
|
||||
*/
|
||||
@RestController
|
||||
class AdminBookController {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user