查询记录根据id

#### 简要描述: - 查询记录根据id #### 接口版本: |版本号|制定人|制定日期|修订日期| |:---- |:---|:----- |----- | |1.0.0 |张玉龙 |2021-04-27 |2021-04-27 | #### 请求URL: - http://ip:port/semi-api/collection/getCollectionRecordById #### 请求方式: - GET #### 请求头: |参数名|是否必须|类型|说明| |:---- |:---|:----- |----- | |Content-Type |是 |string |请求类型: application/json | #### 请求示例: ```json ?id=96 ``` #### 请求参数: | 参数名称 | 参数类型 | 备注 | 是否必须| | ------------ | ------------ | ------------ | ------------ | |id|string|主键id| 是| #### 返回示例: **正确时返回:** ```json { "msg": "操作成功", "code": 200, "data": { "address": "", "city": "北京市", "corporation": "测试有限公司", "county": "朝阳区", "createTime": "2021-04-27 08:50:27", "id": 96, "mobile": "13720993107", "name": "测试", "page": 1, "product": "改色膜,漆面膜", "province": "北京市", "rows": 10, "updateTime": "2021-04-27 08:50:27" } } ``` **错误时返回:** ```json { "msg": "请求失败", "code": -200, "data": {} } ``` #### 返回参数(通用参数)说明: |参数名|是否必须|类型|说明| |:---- |:---|:----- |----- | |code|是 |string | 200 成功 其他失败 | |msg|是 |string |成功或失败消息内容 | |data|是 |string | 真实参数 | #### 返回参数(data)说明: |参数名|是否必须|类型|说明| |:---- |:---|:----- |----- | |name|是 |string | 姓名| |mobile|是 |string | 手机号| |corporation|是 |string | 公司| |province|否 |string | 省| |city|否 |string | 市| |county|否 |string | 区县| |product|是 |string | 产品 逗号分隔|