乘车人列表查询
GET
/api/user-service/passenger/query请求参数
Query 参数
username
string
用户名
示例值:
machen
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
string
必需
message
null
必需
data
array [object {9}]
必需
id
string
用户ID
username
string
用户名
realName
string
真实姓名
idType
integer
证件类型
0:身份证
idCard
string
证件编号
discountType
integer
优惠类型
phone
string
手机号
createDate
string
添加日期
verifyStatus
integer
审核状态
0:通过 1:未通过
requestId
null
必需
success
boolean
必需
示例
{
"code": "0",
"message": null,
"data": [
{
"id": "1",
"username": "machen",
"realName": "machen",
"idType": 0,
"idCard": "1234567890",
"discountType": 0,
"phone": "15601166692",
"createDate": "2023-06-01",
"verifyState": 0
}
],
"requestId": null,
"success": true
}
最后修改时间: 1 年前