https://cic_irc.yuque.com/tyl581/ggwv9w/gc4a1hov95aighug
pom坐标
<dependency>
<groupId>com.aliyun.fsi.insurance</groupId>
<artifactId>aboss-code-client</artifactId>
<version>1.4.0-RELEASE</version>
</dependency>
应用相关接口
1. 基础应用全量数据查询(返回信息只包含应用基本信息)
URL: services.queryAllApplications
/platform/api/aboss/basic-code/front/query-all-application
Author: zhanghua
Content-Type: application/json; charset=utf-8
Description: com.aliyun.fsi.insurance.dict.api.ApplicationRpcFacade.queryAllApplication()
Request-example:
import { services } from '@cic/mp-support';
services.queryAllApplications();
Response-fields:
| Field | Type | Description | Since |
| id | string | No comments found. | - |
| appId | string | 应用唯一标识 | - |
| appName | string | 应用名称 | - |
| description | string | 应用说明 | - |
| appOwner | array | 应用负责人 | - |
| └─ownerName | string | 应用负责人 | - |
| └─ownerAccId | string | 负责人AccId | - |
| appTechOwner | array | 应用技术负责人 | - |
| └─ownerName | string | 应用负责人 | - |
| └─ownerAccId | string | 负责人AccId | - |
| appBusinessOwner | array | 应用业务负责人 | - |
| └─ownerName | string | 应用负责人 | - |
| └─ownerAccId | string | 负责人AccId | - |
| gmtCreate | string | No comments found. | - |
| gmtModified | string | No comments found. | - |
| modifier | string | No comments found. | - |
| creator | string | No comments found. | - |
Response-example:
[
{
"id": "136",
"appId": "136",
"appName": "nadene.vonrueden",
"description": "f85ivo",
"appOwner": [
{
"ownerName": "nadene.vonrueden",
"ownerAccId": "136"
}
],
"appTechOwner": [
{
"ownerName": "nadene.vonrueden",
"ownerAccId": "136"
}
],
"appBusinessOwner": [
{
"ownerName": "nadene.vonrueden",
"ownerAccId": "136"
}
],
"gmtCreate": "2023-10-20 10:55:24",
"gmtModified": "2023-10-20 10:55:24",
"modifier": "w3kwvn",
"creator": "pwo1cv"
}
]