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