GET api/User/SearchUserByKeyword?keyword={keyword}

后台-根据关键字搜索用户信息(全站通用接口)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
keyword

string

Required

Body Parameters

None.

Response Information

Resource Description

后台-根据关键字搜索用户信息(全站通用接口)

Collection of UserSimpleDto
NameDescriptionTypeAdditional information
Id

用户自增长id(注册时不必传入)

integer

None.

Chrname

用户登录名

string

None.

Chrpwd

用户密码

string

None.

Chrtel

注册手机号

string

None.

Response Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

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>