添加增加减少会员余额接口

This commit is contained in:
牛叉闪闪 2024-08-19 11:23:32 +08:00
parent 341b54bd6b
commit 2ad3ca3ef8
1 changed files with 2 additions and 1 deletions

View File

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