Merge remote-tracking branch 'origin/test' into test

This commit is contained in:
2024-08-20 17:05:46 +08:00
15 changed files with 273 additions and 33 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);
}