You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
761 B
43 lines
761 B
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?: string;
|
|
// 押金状态,1已付款,2未付款,已退押金
|
|
status?: string;
|
|
//
|
|
createTime?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
}
|
|
|
|
/**
|
|
* 押金搜索条件
|
|
*/
|
|
export interface WechatDepositParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|