Files
guofu-admin/src/api/think/thinkWechatDeposit/model/index.ts

42 lines
720 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 ThinkWechatDeposit {
//
id?: number;
// 订单id
oid?: number;
// 用户id
uid?: number;
// 场地订单号
orderNum?: string;
// 付款订单号
wechatOrder?: string;
// 退款订单号
wechatReturn?: string;
// 场馆名称
siteName?: string;
// 微信昵称
username?: string;
// 手机号码
phone?: string;
// 物品名称
name?: string;
// 押金金额
price?: string;
// 押金状态1已付款2未付款已退押金
status?: string;
//
createTime?: number;
}
/**
* 搜索条件
*/
export interface ThinkWechatDepositParam extends PageParam {
id?: number;
keywords?: string;
}