文档
测试

查询该店铺下的业务员信息

POST
http://[ip]:[port]/app/salesman/list

请求参数

参数名
类型
描述
必填
userId
int
当前登录账号关联的App用户Id
必填
storeId
string
店铺Id
必填
enterpriseId
int
企业Id
必填

响应参数

参数名
类型
描述
必填
total
int
示例:1
必填
rows
array
数据列表
必填
userName
string
示例: 刘亦菲
必填
userAccount
string
示例:66666666666666
必填
brandName
string
示例:三星电视,苹果手机
必填
totalMoney
int
示例:0
必填
timeCreate
string
示例:2020/10/20
必填
runStatus
int
示例:1
必填
brandInfoVos
array
数据列表
必填
id
int
示例:2
必填
brandName
string
示例:三星电视
必填
have
boolean
该业务员是否管理该品牌 示例:true
必填
code
int
示例:200
必填
msg
string
示例:查询成功
必填

响应示例

``` { "total": 1, "rows": [ { "userName": " 刘亦菲", "userAccount": "66666666666666", "brandName": "三星电视,苹果手机", "totalMoney": 0.0, "timeCreate": "2020/10/20", "runStatus": 1, "brandInfoVos": [ { "id": 2, "brandName": "三星电视", "have": true }, { "id": 3, "brandName": "苹果手机", "have": true } ] } ], "code": 200, "msg": "查询成功" } ```