|
@@ -72,10 +72,10 @@ public class MemberRankSettingController extends BaseController {
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "删除")
|
|
|
- @PostMapping("/del")
|
|
|
+ @PostMapping("/del/{id}")
|
|
|
@PreAuthorize("@pcs.hasPermissions('memberRankSetting/del')")
|
|
|
@AuditLogAnnotation(operateName = "删除学练宝会员等级")
|
|
|
- public HttpResponseResult<Object> update(@RequestParam Integer id) {
|
|
|
+ public HttpResponseResult<Object> update(@PathVariable Integer id) {
|
|
|
memberRankSettingService.del(id);
|
|
|
return succeed();
|
|
|
}
|