24 lines
290 B
TypeScript
24 lines
290 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
*
|
|
*/
|
|
export interface SysLog {
|
|
//
|
|
id?: number;
|
|
//
|
|
version?: string;
|
|
//
|
|
logContent?: string;
|
|
//
|
|
addtime?: string;
|
|
}
|
|
|
|
/**
|
|
* 搜索条件
|
|
*/
|
|
export interface SysLogParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|