1、用户详细信息添加国家、职业、用户名修改剩余次数

2、积分不够 返回异常提示类型更改
3、添加根据ip解析地理位置测试接口
4、更新积分刷新机制(每月1号0点刷新年费用户积分)
This commit is contained in:
2025-01-06 14:42:08 +08:00
parent ee1e2f8556
commit e4a8bf80e9
8 changed files with 125 additions and 6 deletions

View File

@@ -112,4 +112,10 @@ public class StripeController {
return Response.success(stripeService.detachCustomerAllPaymentMethod(name, email));
}
@ApiOperation("临时 获取ip")
@GetMapping("/getIp2")
public Response<String> getIp2(HttpServletRequest request) {
return Response.success(stripeService.getIp2(request));
}
}