会员卡支付增加待支付中状态
This commit is contained in:
parent
d118c922d3
commit
1b4866c4dc
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue