This commit is contained in:
YAS\29473
2025-09-13 10:19:17 +08:00
parent 617e9120e1
commit f7b7a5599e
4 changed files with 49 additions and 0 deletions

View File

@@ -97,4 +97,13 @@ public class ThirdpartySecretInfoController extends BaseController {
return AjaxResult.success(thirdpartySecretInfoService.selectStationList(thirdpartySecretInfo.getPlatformType()));
}
/**
* 同步第三方平台名称到字典表
*/
@GetMapping("/syncThirdpartyPlatformNameToDict")
@PreAuthorize("@ss.hasPermi('thirdparty:secret:add')")
public AjaxResult syncThirdpartyPlatformNameToDict() {
return AjaxResult.success(thirdpartySecretInfoService.syncThirdpartyPlatformNameToDict());
}
}