fix: 订单管理备注和订单查询

feature/mall_product
tangqian 2023-06-20 12:10:42 +08:00
parent fe0e7ae3b9
commit 932295c664
1 changed files with 2 additions and 2 deletions

View File

@ -204,10 +204,10 @@ public class RechargeOrderController {
} }
@TenantIgnore @TenantIgnore
@PreAuthenticated // @PreAuthenticated
@Operation(summary = "管理员填写备注") @Operation(summary = "管理员填写备注")
@RequestMapping(value = "/adminRemark", method = RequestMethod.POST) @RequestMapping(value = "/adminRemark", method = RequestMethod.POST)
@PreAuthorize("@ss.hasPermission('shop:recharge-order:remark')") // @PreAuthorize("@ss.hasPermission('shop:recharge-order:remark')")
public CommonResult<Boolean> adminRemark(@Valid @RequestBody RemarkRequest request) { public CommonResult<Boolean> adminRemark(@Valid @RequestBody RemarkRequest request) {
return CommonResult.success(rechargeOrderService.updateRemark(request)); return CommonResult.success(rechargeOrderService.updateRemark(request));
} }