文档
测试

客户列表查询

POST
http://127.0.0.1:8181/staff/contract/customerList

请求参数

参数名
类型
描述
必填
searchWord
string
用户id,示例:166
必填

响应参数

参数名
类型
描述
必填
list
array
数据列表
必填
customerId
int
客户id,示例:26
必填
customerCode
string
客户号,示例:KH00026
必填
customerName
string
客户姓名,示例:张三
必填
idType
int
证件类型,示例:9
必填
idNumber
string
证件号码,示例:0
必填
legalPerson
object
法人,示例:null
必填
contactPhone
string
手机号,示例:16611111111
必填
address
string
地址,示例:待完善
必填

说明 / 示例

**请求报文** ```json { "searchWord":"166" } ``` --- **响应报文** ```json { "code": "0", "msg": "成功", "detail": null, "result": { "list": [ { "customerId": 26, "customerCode": "KH00026", "customerName": "张三", "idType": 9, "idNumber": "0", "legalPerson": null, "contactPhone": "16611111111", "address": "待完善" } ] }, "traceId": "32af1d4beecc4e619bdafc2227a6da1a", "success": true } ```