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.
23 lines
595 B
23 lines
595 B
import type { ListResultDto } from '@abp/core';
|
|
|
|
import type {
|
|
EntityChangeGetWithUsernameInput,
|
|
EntityChangeWithUsernameDto,
|
|
} from '../types/entity-changes';
|
|
|
|
import { requestClient } from '@abp/request';
|
|
|
|
/**
|
|
* 获取包含用户名称的实体变更列表
|
|
* @param input 参数
|
|
*/
|
|
export function getListWithUsernameApi(
|
|
input: EntityChangeGetWithUsernameInput,
|
|
): Promise<ListResultDto<EntityChangeWithUsernameDto>> {
|
|
return requestClient.get<ListResultDto<EntityChangeWithUsernameDto>>(
|
|
'/api/auditing/entity-changes/with-username',
|
|
{
|
|
params: input,
|
|
},
|
|
);
|
|
}
|
|
|