- 接口配置化
- PLM提供
- 验证引擎
- 单号配置获取
- 引擎
- 引擎-配置管理
获取验证规则列表
开发中
正式环境
https://occ.yanwentech.com
正式环境
https://occ.yanwentech.com
POST
http://localhost:7912/api/verify/listFunc
请求参数
Body 参数application/json
object {0}
示例
{
"funcCode":"",
"keyword":"",
"description":"",
"pageNum":1,
"pageSize":10
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:7912/api/verify/listFunc' \
--header 'Content-Type: application/json' \
--data-raw '{
"funcCode":"",
"keyword":"",
"description":"",
"pageNum":1,
"pageSize":10
}'
返回响应
🟢200成功
application/json
Body
success
boolean
必需
code
string
必需
message
string
必需
data
object
必需
pageNum
integer
必需
pageSize
integer
必需
records
array [object {14}]
必需
totalRecord
integer
必需
totalPages
integer
必需
示例
{
"success": true,
"code": "string",
"message": "string",
"data": {
"pageNum": 0,
"pageSize": 0,
"records": [
{
"funcCode": null,
"jiraLink": null,
"description": "string",
"isEnabled": null,
"operator": "string",
"createTime": "string",
"updateTime": "string",
"isBasic": null,
"keyword": "string",
"ifVerifyContent": null,
"ifWriteMsg": null,
"verifyRegular": null,
"remark": "string",
"parameter": [
{
"index": 0,
"description": "string",
"type": 0
}
]
}
],
"totalRecord": 0,
"totalPages": 0
}
}
修改于 2023-11-09 06:41:39