|
|
@@ -67,16 +67,16 @@ public class ProjectUserConfigController {
|
|
|
|
|
|
@ResourceAuth(value = "user", type = AuthType.User)
|
|
|
@Operation(summary = "标记完成绑定卡片", description = "标记完成绑定卡片")
|
|
|
- @RequestMapping(value = "isFinishBindCard", method = {RequestMethod.GET})
|
|
|
- public ResultContent isFinishBindCard() {
|
|
|
- return this.projectUserConfigService.isFinishBindCard();
|
|
|
+ @RequestMapping(value = "markFinishBindCard", method = {RequestMethod.GET})
|
|
|
+ public ResultContent markFinishBindCard() {
|
|
|
+ return this.projectUserConfigService.markFinishBindCard();
|
|
|
}
|
|
|
|
|
|
@ResourceAuth(value = "user", type = AuthType.User)
|
|
|
@Operation(summary = "标记完成开通无感支付", description = "标记完成开通无感支付")
|
|
|
- @RequestMapping(value = "isOpenUnPay", method = {RequestMethod.GET})
|
|
|
- public ResultContent isOpenUnPay() {
|
|
|
- return this.projectUserConfigService.isOpenUnPay();
|
|
|
+ @RequestMapping(value = "markOpenUnPay", method = {RequestMethod.GET})
|
|
|
+ public ResultContent markOpenUnPay() {
|
|
|
+ return this.projectUserConfigService.markOpenUnPay();
|
|
|
}
|
|
|
|
|
|
}
|