完成了课程模块的订单部分

This commit is contained in:
2025-06-24 19:49:24 +08:00
parent 502f079194
commit 1f7e1211cf
12 changed files with 273 additions and 144 deletions

View File

@ -42,7 +42,7 @@ public class ${entityName}Controller {
* @return 是否更新成功
*/
@PostMapping("update")
@Operation(summary = "web端管理员根据id修改${entityComment}", description = "参数:${entityComment}更新请求体权限管理员方法名update${entityName}")
@Operation(summary = "web端管理员根据id修改${entityComment}信息", description = "参数:${entityComment}更新请求体权限管理员方法名update${entityName}")
@RequiresPermission(mustRole = UserConstant.ADMIN_ROLE)
@SysLog(title = "${entityComment}管理", content = "web端管理员根据id修改${entityComment}信息")
public BaseResponse<Boolean> update${entityName}(@Valid @RequestBody ${entityName}UpdateRequest ${entityNameLower}UpdateRequest) {