优化网站导航模块
This commit is contained in:
25
src/api/think/thinkPayLog/model/index.ts
Normal file
25
src/api/think/thinkPayLog/model/index.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user