初始化
This commit is contained in:
43
api/shop/wechatDeposit/model/index.ts
Normal file
43
api/shop/wechatDeposit/model/index.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 押金
|
||||
*/
|
||||
export interface WechatDeposit {
|
||||
//
|
||||
id?: number;
|
||||
// 订单id
|
||||
oid?: number;
|
||||
// 用户id
|
||||
uid?: number;
|
||||
// 场地订单号
|
||||
orderNum?: string;
|
||||
// 付款订单号
|
||||
wechatOrder?: string;
|
||||
// 退款订单号
|
||||
wechatReturn?: string;
|
||||
// 场馆名称
|
||||
siteName?: string;
|
||||
// 微信昵称
|
||||
username?: string;
|
||||
// 手机号码
|
||||
phone?: string;
|
||||
// 物品名称
|
||||
name?: string;
|
||||
// 押金金额
|
||||
price?: number;
|
||||
// 押金状态,1已付款,2未付款,已退押金
|
||||
status?: string;
|
||||
//
|
||||
createTime?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 押金搜索条件
|
||||
*/
|
||||
export interface WechatDepositParam extends PageParam {
|
||||
id?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user