26 lines
370 B
TypeScript
26 lines
370 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 支付日志
|
|
*/
|
|
export interface ThinkPayLog {
|
|
//
|
|
id?: number;
|
|
// 类型
|
|
type?: string;
|
|
// 参数
|
|
params?: string;
|
|
// 说明
|
|
remate?: string;
|
|
// 时间
|
|
addtime?: string;
|
|
}
|
|
|
|
/**
|
|
* 支付日志搜索条件
|
|
*/
|
|
export interface ThinkPayLogParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|