You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
import type { ListResultDto } from "#/abp-core";
|
|
|
|
import type { IdentityUserDto, UserLookupCountInput, UserLookupSearchInput } from "#/management/identity/user";
|
|
|
|
import requestClient from "../../request";
|
|
|
|
/**
|
|
* 通过id查询用户
|
|
* @param id 用户id
|
|
* @returns 用户实体数据传输对象
|
|
*/
|
|
export function findByIdApi(id: string): Promise<IdentityUserDto> {
|
|
return requestClient.get<IdentityUserDto>(`/api/identity/users/lookup/${id}`);
|
|
}
|
|
|
|
/**
|
|
* 通过用户名查询用户
|
|
* @param userName 用户名
|
|
* @returns 用户实体数据传输对象
|
|
*/
|
|
export function findByUserNameApi(userName: string): Promise<IdentityUserDto> {
|
|
return requestClient.get<IdentityUserDto>(`/api/identity/users/lookup/by-username/${userName}`);
|
|
}
|
|
|
|
/**
|
|
* 搜索用户列表
|
|
* @param input 搜索过滤条件
|
|
* @returns 用户实体数据传输对象列表
|
|
*/
|
|
export function searchApi(input?: UserLookupSearchInput): Promise<ListResultDto<IdentityUserDto>> {
|
|
return requestClient.get<ListResultDto<IdentityUserDto>>("/api/identity/users/lookup/search", {
|
|
params: input,
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 搜索用户数量
|
|
* @param input 搜索过滤条件
|
|
*/
|
|
export function countApi(input?: UserLookupCountInput): Promise<number> {
|
|
return requestClient.get<number>("/api/identity/users/lookup/count", {
|
|
params: input,
|
|
});
|
|
}
|
|
|