|
@@ -34,6 +34,13 @@ public class ProjectPaySettingController {
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private ProjectPaySettingServiceImpl projectPaySettingService;
|
|
private ProjectPaySettingServiceImpl projectPaySettingService;
|
|
|
|
|
|
|
|
|
|
+ @ResourceAuth(value = "user", type = AuthType.User)
|
|
|
|
|
+ @Operation(summary = "得到项目所有的支付渠道参数配置", description = "得到项目所有的支付渠道参数配置")
|
|
|
|
|
+ @RequestMapping(value = "getAllProjectPaySetting", method = {RequestMethod.POST})
|
|
|
|
|
+ public ResultContent<List<ProjectPaySettingModel>> getAllProjectPaySetting(@RequestBody ProjectOidParam param) {
|
|
|
|
|
+ return projectPaySettingService.getAllProjectPaySetting(param.getProjectOid());
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
@ResourceAuth(value = "user", type = AuthType.User)
|
|
@ResourceAuth(value = "user", type = AuthType.User)
|
|
|
@Operation(summary = "保存项目的微信支付设置", description = "保存项目的微信支付设置")
|
|
@Operation(summary = "保存项目的微信支付设置", description = "保存项目的微信支付设置")
|
|
|
@RequestMapping(value = "saveWxPayConfig", consumes = MediaType.MULTIPART_FORM_DATA_VALUE, method = {RequestMethod.POST})
|
|
@RequestMapping(value = "saveWxPayConfig", consumes = MediaType.MULTIPART_FORM_DATA_VALUE, method = {RequestMethod.POST})
|
|
@@ -62,13 +69,6 @@ public class ProjectPaySettingController {
|
|
|
return projectPaySettingService.getLaKaLaConfig(param.getProjectOid());
|
|
return projectPaySettingService.getLaKaLaConfig(param.getProjectOid());
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- @ResourceAuth(value = "user", type = AuthType.User)
|
|
|
|
|
- @Operation(summary = "得到项目所有的支付渠道参数配置", description = "得到项目所有的支付渠道参数配置")
|
|
|
|
|
- @RequestMapping(value = "getAllProjectPaySetting", method = {RequestMethod.POST})
|
|
|
|
|
- public ResultContent<List<ProjectPaySettingModel>> getAllProjectPaySetting(@RequestBody ProjectOidParam param) {
|
|
|
|
|
- return projectPaySettingService.getAllProjectPaySetting(param.getProjectOid());
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
@ResourceAuth(value = "user", type = AuthType.User)
|
|
@ResourceAuth(value = "user", type = AuthType.User)
|
|
|
@Operation(summary = "删除参数配置", description = "删除参数配置")
|
|
@Operation(summary = "删除参数配置", description = "删除参数配置")
|
|
|
@RequestMapping(value = "deleteInfo", method = {RequestMethod.POST})
|
|
@RequestMapping(value = "deleteInfo", method = {RequestMethod.POST})
|