文档
测试

分页条件查询员工列表

POST
http://crm.houcaller.com/htest/openapi/v1/listStaffMemberByConditionWithPage

请求参数

参数名
类型
描述
必填
phone
String
手机号码
可选
staffName
String
员工姓名 模糊匹配
可选
page
object
分页条件
必填
offset
String
起始位置 从0开始
可选
limit
String
分页长度 最大只支持100条分页数据
可选
currentPage
String
当前页数 从1开始
可选

响应参数

参数名
类型
描述
必填
msg
string
示例:操作成功
必填
code
int
示例:0
必填
data
object
数据字典
必填
count
int
总数
必填
list
array
数据列表
必填
deptCode
string
部门编码 示例:100174
必填
deptId
string
部门id 示例:91
必填
deptName
string
部门名称 示例:信息中心
必填
orgCode
string
所属餐厅 示例:1
必填
phone
string
手机号 示例:18860011858
必填
postId
string
EHR 职位的ID 示例:1638
必填
postName
string
职位名称 示例:后端开发工程师
必填
postType
int
职位的类型 例:9600
必填
staffId
string
员工id 示例:177258
必填
staffName
string
员工姓名 示例:吴根勇
必填
staffNo
string
员工卡号 示例:H2306020003
必填
wfcard
string
会员主键 对应sco_member表的id 示例:M8KC5L4MIBV66
必填

说明 / 示例

<pre>{ "msg": "操作成功", "code": 0, "data": { "count": 1, "list": [ { "deptCode": "100174", "deptId": "91", "deptName": "信息中心", "orgCode": "1", "phone": "18860011858", "postId": "1638", "postName": "后端开发工程师", "postType": 9600, "staffId": "177258", "staffName": "吴根勇", "staffNo": "H2306020003", "wfcard": "M8KC5L4MIBV66" } ] } }