nc推送地址动态从三方接口获取;

This commit is contained in:
王奎兴
2026-03-06 16:09:06 +08:00
parent 0b2340b135
commit 006b1a43a2
4 changed files with 25 additions and 7 deletions
@@ -33,6 +33,10 @@ public interface ThirdPartyServiceFeign {
@GetMapping("/sysDepartInterfaceInfo/querylist")
public List<SysDepartInterfaceInfoPo> querylist(@RequestBody SysDepartInterfaceInfoDTO sysDepartInterfaceInfoDTO);
//查询当前组织所有三方接口信息
@GetMapping("/sysDepartInterfaceInfo/queryList")
public List<SysDepartInterfaceInfoPo> queryList(@RequestBody SysDepartInterfaceInfoDTO sysDepartInterfaceInfoDTO);
//查询当前组织所有三方接口信息
@PostMapping("/sysDepartInterfaceInfo/queryListByFeign")
public List<SysDepartInterfaceInfoPo> queryListByFeign(@RequestBody SysDepartInterfaceInfoDTO sysDepartInterfaceInfoDTO);
@@ -323,4 +327,4 @@ public interface ThirdPartyServiceFeign {
//查询用户详情
@GetMapping("/dingtalkApi/v2/user/get")
AjaxResult userGet(@RequestParam(value = "userId") String userId);
}
}