Files
guofu-admin/src/api/booking/bookingSite/model/index.ts
2024-08-23 22:28:24 +08:00

52 lines
902 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 BookingSite {
//
id?: number;
// 场地名称
name?: string;
// 封面图
thumb?: string;
// 每小时价格
price?: string;
// 营业时间
businessTime?: string;
// 场馆地址
address?: string;
// 场馆介绍
info?: string;
// 场馆电话
tel?: string;
// 排序
sortNumber?: number;
// 类型1天2小时
type?: string;
// 天数或小时
num?: string;
// 退款比率
proportion?: string;
// 退款规则组
moneyJson?: string;
// 场馆图片
files?: string;
// 创建时间
createTime?: number;
// 更新时间
updateTime?: number;
// 周末活动订场开关1开0关
weekendOpen?: number;
// 租户id
tenantId?: number;
}
/**
* 搜索条件
*/
export interface BookingSiteParam extends PageParam {
id?: number;
keywords?: string;
}