会员卡支付增加待支付中状态
This commit is contained in:
@@ -74,6 +74,11 @@ public class UserContoller {
|
|||||||
jsonObject.put("data",object);
|
jsonObject.put("data",object);
|
||||||
return jsonObject;
|
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")
|
@PostMapping("/modityIntegral")
|
||||||
public JSONObject modityIntegral(@RequestHeader String token,@RequestBody IntegralVo integralVo ) throws Exception {
|
public JSONObject modityIntegral(@RequestHeader String token,@RequestBody IntegralVo integralVo ) throws Exception {
|
||||||
JSONObject jsonObject = TokenUtil.parseParamFromToken(token);
|
JSONObject jsonObject = TokenUtil.parseParamFromToken(token);
|
||||||
|
|||||||
Reference in New Issue
Block a user