https://cic_irc.yuque.com/tyl581/ggwv9w/mbmd0g5owr40khlq
<dependency>
<groupId>com.aliyun.fsi.insurance</groupId>
<artifactId>basic-facade</artifactId>
<version>1.1.8-SNAPSHOT</version>
</dependency>
查询版本更新日志详情
URL: /platform/api/aboss/basic/query-app-release-detail
Type: POST
Content-Type: application/json; charset=utf-8
Description: 查询版本更新日志详情com.aliyun.fsi.insurance.basic.facade.AppReleaseRPCFacade#queryAppReleaseDetailById(AppReleaseIdQry appReleaseIdQry)
Body-parameters:
| Parameter | Type | Description | Required | Since |
| id | string | 版本更新id | true | - |
Request-example:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -i /platform/api/aboss/basic/query-app-release-detail --data '{
"id": "164"
}'
Response-fields:
| Field | Type | Description | Since |
| id | string | 版本更新id | - |
| appId | string | 应用id | - |
| title | string | 标题 | - |
| summary | string | 摘要 | - |
| contentType | int32 | 类型0:链接1:文本 | - |
| content | string | 副文本 | - |
| publishDate | date | 发布时间 | - |
| attachmentDTOList | array | 附件信息 | - |
| └─attachmentFileId | string | 附件fileId | - |
| └─attachmentName | string | 附件name | - |
| download | int32 | 是否允许下载 | - |
Response-example:
{
"id": "164",
"appId": "164",
"title": "g25wgi",
"summary": "uxso4t",
"contentType": 696,
"content": "wbcgaj",
"publishDate": "2025-11-26",
"attachmentDTOList": [
{
"attachmentFileId": "164",
"attachmentName": "malisa.krajcik"
}
],
"download": 244
}
分页获取指定appName的版本更新日志数据
URL: /platform/api/aboss/basic/query-app-release-subscribe-list-by-app-name
Type: POST
Content-Type: application/json; charset=utf-8
Description: 分页获取指定appName的版本更新日志数据com.aliyun.fsi.insurance.basic.facade.AppReleaseRPCFacade#queryAppReleaseSubscribeListByAppId(GetAppReleaseListByAppIdQry getAppReleaseListByAppIdQry)
Body-parameters:
| Parameter | Type | Description | Required | Since |
| pageSize | int32 | 每页展示条数 | true | - |
| pageIndex | int32 | 当前页码 | true | - |
| appName | string | 系统来源名称 | true | - |
Request-example:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -i /platform/api/aboss/basic/query-app-release-subscribe-list-by-appid --data '{
"pageSize": 10,
"pageIndex": 1,
"appName": "malisa.krajcik"
}'
Response-fields:
| Field | Type | Description | Since |
| data | array | 返回结果 | - |
| └─id | string | 版本更新id | - |
| └─appId | string | 应用id | - |
| └─appName | string | 系统来源名字 | - |
| └─title | string | 标题 | - |
| └─summary | string | 摘要 | - |
| └─contentType | int32 | 类型0:链接1:文本 | - |
| └─content | string | 副文本 | - |
| └─publishDate | date | 发布时间 | - |
| └─download | int32 | 是否允许下载 | - |
| pageIndex | int32 | 页码 | - |
| totalCount | int32 | 总数 | - |
| pageSize | int32 | 分页数 | - |
Response-example:
{
"data": [
{
"id": "164",
"appId": "164",
"appName": "malisa.krajcik",
"title": "rcme46",
"summary": "komiey",
"contentType": 761,
"content": "hgooev",
"publishDate": "2025-11-26",
"download": 217
}
],
"pageIndex": 1,
"totalCount": 380,
"pageSize": 10
}