feat: 添加审计日志列表
Van Zheng authored at 2023-02-25 14:36:26
301.00 B
NewLife.CubeAntd
declare namespace API {
  /**
   * 审计日志列表项
   */
  type LogListItem = {
    id: number;
    category: string;
    action: string;
    linkID: number;
    success: boolean;
    traceId: string;
    userName: string;
    remark?: string;
  } & Partial<CreateItem> &
    Partial<ExItem>;
}