会员卡支付增加待支付中状态

This commit is contained in:
wangguocheng 2024-05-22 11:42:37 +08:00
parent d118c922d3
commit 1b4866c4dc
1 changed files with 5 additions and 0 deletions

View File

@ -74,6 +74,11 @@ public class UserContoller {
jsonObject.put("data",object);
return jsonObject;
}
@GetMapping("/shopUserInfo")
public Result shopUserInfo(@RequestParam("userId") String userId ,@RequestParam("shopId") String shopId ) throws Exception {
TbShopUser shopUser = shopUserMapper.selectByUserIdAndShopId(userId,shopId);
return Result.success(CodeEnum.SUCCESS,shopUser);
}
@PostMapping("/modityIntegral")
public JSONObject modityIntegral(@RequestHeader String token,@RequestBody IntegralVo integralVo ) throws Exception {
JSONObject jsonObject = TokenUtil.parseParamFromToken(token);