logModel.ts 212 Bytes
import { BasicPageParams } from '/@/api/model/baseModel';
export type LogQueryParam = BasicPageParams & LoginParam;

export type LoginParam = {
  actionType?: string;
  startTime?: string;
  endTime?: string;
};