TIP
# 虚假照片记录查询接口
接口说明:查询虚假照片记录。
请求方式: POST(HTTPS)
请求地址: https://openapi.qince.com/api/piccheck/v1/queryRecords/{ openid }/{ timestamp }/{ digest }/{ msg_id } 在线调试
请求示例:
参数说明:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| startDate | VARCHAR | 是 | 查询起始时间(包含)。格式:yyyy-MM-dd HH:mm:ss |
| endDate | VARCHAR | 是 | 查询结束时间(包含)。格式:yyyy-MM-dd HH:mm:ss |
| page | NUMERIC | 是 | 分页页码 |
| rows | NUMERIC | 是 | 分页大小 |
响应示例:
{
"return_code": "0",
"return_msg": "响应信息",
"msg_id": "{ msg_id }",
"response_data": "<<DATA>>"
}
数据DATA示例:
[
{
"appName": "标准应用_铺货",
"bizId": 5845178499765580758,
"childImageList": [
{
"cmCode": "DT00000007",
"cmId": 4637337584506900812,
"cmName": "经001",
"createTime": "2024-04-10 04:00:07",
"creatorId": 7171229636411166587,
"creatorName": "zh003",
"imageCreateTime": "2024-04-09 19:37:19",
"picPath": "http://image-test.waiqin365.com/8609110348184056319/user_defined/8098447065805710528/202404/20240409193716367_5c0d91a1_CAMERA_21001002282.jpg"
}
],
"componentId": null,
"componentName": "",
"createTime": "2024-04-10 04:00:09",
"creatorId": 5499735581635819053,
"creatorName": "zhuhao",
"customCode": "DT00000007",
"customId": 4637337584506900812,
"customLabel": "手工标签009",
"customName": "经001",
"formName": "",
"funcId": null,
"id": 5838484120748956161,
"identificationTime": "2024-04-10 04:00:09",
"interceptType": "5",
"picPath": "http://image-test.waiqin365.com/8609110348184056319/user_defined/8098447065805710528/202404/20240409193716367_5c0d91a1_CAMERA_21001002282.jpg"
},
{
"appName": "标准应用_铺货",
"bizId": 8959017186893554040,
"childImageList": [
{
"cmCode": "CUS000008",
"cmId": 8057424136122743241,
"cmName": "线索002",
"createTime": "2024-04-10 04:00:06",
"creatorId": 7171229636411166587,
"creatorName": "zh003",
"imageCreateTime": "2024-04-09 19:36:43",
"picPath": "http://image-test.waiqin365.com/8609110348184056319/user_defined/8098447065805710528/202404/20240409193640822_5c0d91a1_CAMERA_21001003283.jpg"
}
],
"componentId": null,
"componentName": "",
"createTime": "2024-04-10 04:00:13",
"creatorId": 5499735581635819053,
"creatorName": "zhuhao",
"customCode": "CUS000008",
"customId": 8057424136122743241,
"customLabel": "标签11,标签1122,手工标签009,空白标签",
"customName": "线索002",
"formName": "",
"funcId": null,
"id": 8180611225968024186,
"identificationTime": "2024-04-10 04:00:13",
"interceptType": "5",
"picPath": "http://image-test.waiqin365.com/8609110348184056319/user_defined/8098447065805710528/202404/20240409193640822_5c0d91a1_CAMERA_21001003283.jpg"
}
]
参数说明:
| 参数 | 类型 | 说明 |
|---|---|---|
| id | BIGINT | 记录id |
| bizId | BIGINT | 业务记录id |
| appName | VARCHAR | 应用 |
| formName | VARCHAR | 来源表单名称 |
| componentName | VARCHAR | 来源组件名称 |
| createTime | VARCHAR | 图片提交时间。格式:yyyy-MM-dd HH:mi:ss |
| identificationTime | VARCHAR | 图片识别时间。格式:yyyy-MM-dd HH:mi:ss |
| creatorId | BIGINT | 上报人id |
| creatorName | VARCHAR | 上报人姓名 |
| picPath | VARCHAR | 照片url |
| interceptType | VARCHAR | 虚假照片类型。0:翻拍检测,4:拍照破解,5:相同破解 |
| customName | VARCHAR | 客户名称 |
| customCode | VARCHAR | 客户编码 |
| funcId | BIGINT | 表单id |
| componentId | BIGINT | 组件id |
| customId | BIGINT | 客户id |
| childImageList | LIST | 相同照片子照片集合 |
| childImageList.cmCode | VARCHAR | 子照片客户编码 |
| childImageList.cmId | BIGINT | 子照片客户id |
| childImageList.cmName | VARCHAR | 子照片客户名称 |
| childImageList.createTime | VARCHAR | 照片识别时间 |
| childImageList.creatorId | BIGINT | 子照片提交人id |
| childImageList.creatorName | VARCHAR | 子照片提交人名称 |
| childImageList.imageCreateTime | VARCHAR | 子照片提交时间 |
| childImageList.picPath | VARCHAR | 子照片url |