Files
template-10490/api/shop/wechatDeposit/model/index.ts
2025-01-27 23:24:42 +08:00

44 lines
758 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 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;
}