文档
测试

顾客列表(分页)

POST
{{host}}/system/customer/list

请求头

参数名
类型
描述
必填
Content-Type
string
application/json
必填
Authorization
string
{{token}}
必填

请求参数

参数名
类型
描述
必填
tenantId
string
租户ID
必填
labelId
string
标签ID
可选
pageNum
string
分页参数
必填
pageSize
string
分页参数
必填

响应参数

参数名
类型
描述
必填
code
string
返回编码 0失败 1成功
必填
msg
string
返回说明
必填
data
object
数据字典
必填
total
string
数据总量
必填
rows
array
数据列表
必填
customerId
string
顾客编码
必填
customerName
string
顾客名称
必填
customerImag
string
顾客头像
必填
customerSex
string
顾客性别
必填
customerEmail
string
顾客邮箱
必填
status
string
顾客状态
必填
createTime
string
注册时间
必填

说明 / 示例

请求报文示例: { "tenantId":"2", "pageNum":"1", "pageSize":"10" } 响应报文示例: { "code":"200", "msg":"ok", "data": { "total": 10, "rows": [{ "customerId":"", "customerName":"", "customerImag":"", "customerSex":"", "customerEmail":"" }] } }