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