nc推送地址动态从三方接口获取;
This commit is contained in:
Vendored
+15
-1
@@ -138,6 +138,20 @@ public class SysDepartInterfaceInfoApi extends BaseController
|
||||
return list;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @Description 查询当前组织所有三方接口信息
|
||||
* @Author Alex
|
||||
* @Date 2023/4/28 11:24
|
||||
*/
|
||||
@GetMapping(value = "/queryList")
|
||||
public List<SysDepartInterfaceInfoPo> queryList(@RequestBody SysDepartInterfaceInfoDTO sysDepartInterfaceInfoDTO) {
|
||||
SysDepartInterfaceInfoDo sysDepartInterfaceInfoDo = new SysDepartInterfaceInfoDo();
|
||||
BeanUtils.copyProperties(sysDepartInterfaceInfoDTO,sysDepartInterfaceInfoDo);
|
||||
List<SysDepartInterfaceInfoPo> list = sysDepartInterfaceInfoApplicationService.queryList(sysDepartInterfaceInfoDo);
|
||||
return list;
|
||||
}
|
||||
|
||||
/**
|
||||
* @Description 查询当前组织所有三方接口信息
|
||||
* @Author Alex
|
||||
@@ -163,4 +177,4 @@ public class SysDepartInterfaceInfoApi extends BaseController
|
||||
return list;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user