GET api/User/SearchUserByKeyword?keyword={keyword}
后台-根据关键字搜索用户信息(全站通用接口)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| keyword | string |
Required |
Body Parameters
None.
Response Information
Resource Description
后台-根据关键字搜索用户信息(全站通用接口)
Collection of UserSimpleDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
用户自增长id(注册时不必传入) |
integer |
None. |
| Chrname |
用户登录名 |
string |
None. |
| Chrpwd |
用户密码 |
string |
None. |
| Chrtel |
注册手机号 |
string |
None. |
Response Formats
application/json
Sample:
text/json
Sample:
application/xml, text/xml
Sample:
<ArrayOfUserSimpleDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mh.Common.Service.Dto.User">
<UserSimpleDto>
<Chrname>sample string 2</Chrname>
<Chrpwd>sample string 3</Chrpwd>
<Chrtel>sample string 4</Chrtel>
<Id>1</Id>
</UserSimpleDto>
<UserSimpleDto>
<Chrname>sample string 2</Chrname>
<Chrpwd>sample string 3</Chrpwd>
<Chrtel>sample string 4</Chrtel>
<Id>1</Id>
</UserSimpleDto>
</ArrayOfUserSimpleDto>