查询电子质保卡(手机端)
#### 简要描述:
- 查询电子质保卡手机端
#### 接口版本:
|版本号|制定人|制定日期|修订日期|
|:---- |:---|:----- |----- |
|1.0.0 |张玉龙 |2020-11-24 |2020-11-24 |
#### 请求URL:
- http://ip:port/semi-api/electronic/queryElectronic
#### 请求方式:
- POST/JSON
#### 请求头:
|参数名|是否必须|类型|说明|
|:---- |:---|:----- |----- |
|Content-Type |是 |string |请求类型: application/json |
#### 请求参数:
|参数名|是否必须|类型|说明|
|:---- |:---|:----- |----- |
|vehicleIdentificationNumber|是 |string |车架号 |
|mobile|是 |string |手机号 |
#### 请求示例:
```json
{
"vehicleIdentificationNumber": "123232e4242423443",
"mobile": "13799008822"
}
```
#### 返回示例:
**正确时返回:**
```json
{
"msg": "操作成功",
"code": 200,
"data": {
"carOwnerName": "高美玲",
"carType": "宝马",
"commencementDate": "2019-01-14 00:00:00",
"commencementEndDate": null,
"commencementStartDate": null,
"confirmedDate": "2019-01-14 00:00:00",
"confirmedEndDate": null,
"confirmedStartDate": null,
"constructionOrganization": "满城县分公司",
"createTime": "2019-11-07 16:35:29",
"day": "14",
"id": 2,
"insuranceDeadline": 10,
"mobile": "13012055627",
"month": "01",
"operatingPersonnel": "管理员",
"page": 1,
"productName": "漆面保护膜",
"rollCoreNumber": "321313131331312",
"rows": 10,
"updateTime": "2019-11-07 16:35:29",
"vehicleIdentificationNumber": "190613164517",
"year": "2019"
}
}
```
**错误时返回:**
```json
{
"msg": "用户名或密码错误",
"code": -200,
"data": {}
}
```
#### 返回参数(通用参数)说明:
|参数名|是否必须|类型|说明|
|:---- |:---|:----- |----- |
|code|是 |string | 200 成功 其他失败 |
|msg|是 |string |成功或失败消息内容 |
|data|是 |string | 真实参数 |
#### 返回参数(data)说明:
|参数名|是否必须|类型|说明|
|:---- |:---|:----- |----- |
|id|是 |string | 订单id |
|carOwnerName|是 |string | 车主姓名 |
|carType|是 |string |车型 |
|commencementDate|是 |string | 施工日期|
|confirmedDate|是 |string | 起保日期 |
|constructionOrganization|是 |string | 施工单位 |
|createTime|是 |string | 创建时间 |
|insuranceDeadline|是 |string | 质保日期 |
|mobile|是 |string | 手机号 |
|operatingPersonnel|是 |string | 操作人员 |
|productName|是 |string | 产品名称 |
|updateTime|是 |string | 更新日期 |
|vehicleIdentificationNumber|是 |string |VIN号 |
|month|是 |string |起保月 |
|day|是 |string |起保天|
|year|是 |string |起保年 |