修改增加减少用户资金接口

This commit is contained in:
牛叉闪闪 2024-08-20 15:20:04 +08:00
parent b9157ddc6b
commit aa7c5d3744
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public class TbShopUserController {
@PostMapping("midfiyAccount")
@ApiOperation("增加扣减会员余额")
public ResponseEntity<Object> midfiyAccount(Map<String,Object> map){
public ResponseEntity<Object> midfiyAccount(@RequestBody Map<String,Object> map){
tbShopUserService.modfiyAccount(map);
return new ResponseEntity<>(HttpStatus.OK);
}