POST api/user/GetUserList
根据部门ID查询集团成员列表
Request Information
URI Parameters
None.
Body Parameters
搜索参数
UserInfoQueryParams| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyID |
公司ID |
integer |
None. |
| DeptID |
部门ID |
integer |
None. |
| RoleID |
角色ID |
integer |
None. |
| UserName |
昵称 |
string |
None. |
| QueryType |
搜索类型 1:全部成员 2:禁用成员 3:未分配部门成员 4:历史成员账号 |
integer |
None. |
| PageIndex |
页数,从1开始 |
integer |
None. |
| PageSize |
每页显示条数 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompanyID": 1,
"DeptID": 2,
"RoleID": 3,
"UserName": "sample string 4",
"QueryType": 5,
"PageIndex": 6,
"PageSize": 7
}
application/xml, text/xml
Sample:
<UserInfoQueryParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JR.SAAS.Models"> <CompanyID>1</CompanyID> <DeptID>2</DeptID> <PageIndex>6</PageIndex> <PageSize>7</PageSize> <QueryType>5</QueryType> <RoleID>3</RoleID> <UserName>sample string 4</UserName> </UserInfoQueryParams>
Response Information
Resource Description
根据部门ID查询集团成员列表
ApiRet| Name | Description | Type | Additional information |
|---|---|---|---|
| RetCode |
状态码 |
string |
None. |
| RetMsg |
状态描述 |
string |
None. |
| Message |
数据实体 |
Object |
None. |
| Total |
查询结果所有页的总条数 |
integer |
None. |
| TotalPage |
总页数 |
integer |
None. |
| Redirect |
需重定向的地址 |
string |
None. |
| FieldStr |
列表字段管理 |
Object |
None. |
| CurrentTime |
当前时间 |
date |
None. |
| IDX |
主键 |
integer |
None. |
| DelFlag |
删除标识 0未删除 1:已删除 |
integer |
None. |
| PageIndex |
列表请求参数 |
integer |
None. |
| PageSize |
列表请求参数 |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"RetCode": "sample string 1",
"RetMsg": "sample string 2",
"Message": {},
"Total": 4,
"TotalPage": 5,
"Redirect": "sample string 6",
"FieldStr": {},
"CurrentTime": "2026-04-05 22:32:35",
"IDX": 9,
"DelFlag": 10,
"PageIndex": 11,
"PageSize": 12
}
application/xml, text/xml
Sample:
<ApiRet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JR.SAAS.Models.Common"> <_x003C_DelFlag_x003E_k__BackingField>10</_x003C_DelFlag_x003E_k__BackingField> <_x003C_IDX_x003E_k__BackingField>9</_x003C_IDX_x003E_k__BackingField> <_x003C_PageIndex_x003E_k__BackingField>11</_x003C_PageIndex_x003E_k__BackingField> <_x003C_PageSize_x003E_k__BackingField>12</_x003C_PageSize_x003E_k__BackingField> <CurrentTime>2026-04-05T22:32:35.86238+08:00</CurrentTime> <FieldStr /> <Message /> <Redirect>sample string 6</Redirect> <RetCode>sample string 1</RetCode> <RetMsg>sample string 2</RetMsg> <Total>4</Total> <TotalPage>5</TotalPage> </ApiRet>