Files
guofu-admin/src/api/think/thinkOrderRefundLog/model/index.ts
2024-08-23 22:28:24 +08:00

32 lines
565 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { PageParam } from '@/api';
/**
* 微信退款记录
*/
export interface ThinkOrderRefundLog {
//
int?: number;
// 用户ID
uid?: number;
// 场馆ID
sid?: number;
// 订单ID
oid?: number;
// 参数json
json?: string;
// 来源
source?: string;
// 状态1新增2退款成功3已全额退款4退款失败
status?: string;
// 创建时间
createTime?: string;
}
/**
* 微信退款记录搜索条件
*/
export interface ThinkOrderRefundLogParam extends PageParam {
int?: number;
keywords?: string;
}