作者:钟剑华 历史版本:1 更新时间:2024-11-20 15:41
常用语列表
简述:
- 【常用语】列表(分页条件查询)数据
请求URL:
- http://ip:port/ibps/business/v3/bpm/common/statment/query
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- POST
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
暂无
- Body:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
request | APIRequest[1] | 是 | 动态查询请求对象 |
请求参数示例:
{
"parameters": [],
"requestPage": {
"pageNo": 1,
"limit": 20
},
"sorts": []
}
返回示例:
{
"state": 200,
"request": null,
"message": "",
"cause": "",
"variables": {},
"data": {
"dataResult": [{
"pk": "",
"name": null,
"ip": null,
"createBy": "626353848415420416",
"createTime": "2019-11-12 10:53:10",
"updateBy": null,
"updateTime": null,
"tenantId": null,
"dataStatus": null,
"dbtype": null,
"id": "643765223756398592",
"value": "11",
"action": "agree",
"isDefault": "N",
"times": 6
}, {
"pk": "",
"name": null,
"ip": null,
"createBy": "626353848415420416",
"createTime": "2019-11-12 10:41:33",
"updateBy": null,
"updateTime": null,
"tenantId": null,
"dataStatus": null,
"dbtype": null,
"id": "643762300527837184",
"value": "tongyi",
"action": "agree",
"isDefault": "N",
"times": 1
}
],
"pageResult": {
"limit": 20,
"page": 1,
"totalCount": 2,
"totalPages": 1
}
}
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
dataResult | List< BpmCommonStatmentPo > | 常用语列表数据 |
pageResult | Object | 分页数据 |
根据id获取对象信息
简述:
- 根据id获取对象信息
请求URL:
- http://ip:port/ibps/business/v3/bpm/common/statment/get
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- GET
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
id | String | 是 | 主键id |
- Body:
暂无
请求参数示例:
http://192.168.3.230:15100/ibps/business/v3/bpm/common/statment/get?id=626866373389189120
返回示例:
{
"state": 200,
"request": null,
"message": "",
"cause": "",
"variables": {},
"data": {
"pk": "",
"name": null,
"ip": null,
"createBy": "626353848415420416",
"createTime": "2019-11-12 10:41:33",
"updateBy": null,
"updateTime": null,
"tenantId": null,
"dataStatus": null,
"dbtype": null,
"id": "643762300527837184",
"value": "tongyi",
"action": "agree",
"isDefault": "N",
"times": 1
}
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
data | BpmCommonStatmentPo | 常用语对象 |
保存
简述:
- 保存常用语
请求URL:
- http://ip:port/ibps/business/v3/bpm/common/statment/save
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- POST
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
暂无
- Body:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
id | String | 否 | 主键id | ||
action | String | 是 | 动作类型 | agree/oppose/reject/rejectToPrevious/rejectToStart/rejectToStart/abandon/manualend | |
isDefault | String | 是 | 是否默认 | Y/N | |
value | String | 是 | 常用语值 |
请求参数示例:
{
"action": "oppose",
"isDefault": "Y",
"value": "反对一切"
}
返回示例:
{
"state": 200,
"request": null,
"message": "保存常用语成功",
"cause": "",
"variables": {},
"data": null
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
data | Void |
删除
简述:
- 批量删除常用语
请求URL:
- http://ip:port/ibps/business/v3/bpm/common/statment/remove
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- POST
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
ids | String | 是 | 主键id |
- Body:
暂无
请求参数示例:
http://192.168.3.230:15100/ibps/business/v3/bpm/common/statment/remove?ids=654357778126602240,638399136323862528
返回示例:
{
"state": 200,
"request": null,
"message": "删除常用语成功",
"cause": "",
"variables": {},
"data": null
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
data | Void |
根据参数查询常用语(包含action值为null)
简述:
- 根据参数查询常用语(包含action值为null)
请求URL:
- http://ip:port/ibps/business/v3/bpm/common/statment/queryIncludeNull
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- POST
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
暂无
- Body:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
request | APIRequest[1] | 是 | 动态查询请求对象 |
请求参数示例:
{
"parameters": [{
"key": "Q^ACTION_^S",
"value": "agree"
}, {
"key": "Q^CREATE_BY_^S",
"value": "626353848415420416"
}
],
"requestPage": {
"pageNo": 1,
"limit": 5
}
}
返回示例:
{
"state": 200,
"request": null,
"message": "",
"cause": "",
"variables": {},
"data": {
"dataResult": [{
"pk": "",
"name": null,
"ip": null,
"createBy": "626353848415420416",
"createTime": "2019-11-12 10:41:33",
"updateBy": null,
"updateTime": null,
"tenantId": null,
"dataStatus": null,
"dbtype": null,
"id": "643762300527837184",
"value": "tongyi",
"action": "agree",
"isDefault": "N",
"times": 1
}, {
"pk": "",
"name": null,
"ip": null,
"createBy": "626353848415420416",
"createTime": "2019-11-11 11:51:30",
"updateBy": null,
"updateTime": null,
"tenantId": null,
"dataStatus": null,
"dbtype": null,
"id": "643417516885934080",
"value": "1123",
"action": "agree",
"isDefault": "N",
"times": 1
}, {
"pk": "",
"name": null,
"ip": null,
"createBy": "626353848415420416",
"createTime": "2019-11-12 10:53:10",
"updateBy": null,
"updateTime": null,
"tenantId": null,
"dataStatus": null,
"dbtype": null,
"id": "643765223756398592",
"value": "11",
"action": "agree",
"isDefault": "N",
"times": 6
}
],
"pageResult": {
"limit": 5,
"page": 1,
"totalCount": 3,
"totalPages": 1
}
}
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
dataResult | List< BpmCommonStatmentPo > | 常用语列表数据 |
pageResult | Object | 分页数据 |
设置默认常用语
简述:
- 设置默认常用语
请求URL:
- http://ip:port/ibps/business/v3/bpm/common/statment/setDefault
- URL中的ip需要替换为自己网关ip
- URL中的port需要替换为自己网关端口
请求方式:
- POST
请求参数:
- Headers:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
X-Authorization-access_token | String | 是 | 系统令牌 |
- Query:
暂无
- Body:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
id | String | 是 | 主键id |
请求参数示例:
http://192.168.3.230:15100/ibps/business/v3/bpm/common/statment/setDefault?id=643765223756398592
返回示例:
{
"state": 200,
"request": null,
"message": "设置默认常用语成功",
"cause": "",
"variables": {},
"data": null
}
返回参数说明:
名称 | 类型 | 备注 |
---|---|---|
data | Void |
备注
- [1] : APIRequest为动态查询请求对象,详情请移步全局请求格式