123
This commit is contained in:
@@ -81,6 +81,16 @@ public class PayTrdConfigController extends BaseController {
|
||||
return R.ok();
|
||||
}
|
||||
|
||||
@SaCheckPermission("cai:payTrdConfig:edit")
|
||||
@Log(title = "四方支付IOS配置启用和关闭", businessType = BusinessType.INSERT)
|
||||
@RepeatSubmit()
|
||||
@PostMapping("/enableIosStatus")
|
||||
public R<Void> enableIosStatus(@RequestBody PayTrdConfig bo) {
|
||||
payTrdConfigService.update(Wrappers.lambdaUpdate(PayTrdConfig.class).eq(PayTrdConfig::getId, bo.getId())
|
||||
.set(PayTrdConfig::getEnableIos, bo.getEnableIos()));
|
||||
return R.ok();
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改四方支付配置
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user