优化网站导航模块
This commit is contained in:
47
src/api/booking/bookingPeriod/model/index.ts
Normal file
47
src/api/booking/bookingPeriod/model/index.ts
Normal file
@@ -0,0 +1,47 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export interface BookingPeriod {
|
||||
//
|
||||
id?: number;
|
||||
// 时段
|
||||
timePeriod?: string;
|
||||
// 价格
|
||||
price?: string;
|
||||
// 每日不同价格
|
||||
prices?: string;
|
||||
// 半场价格
|
||||
halfPrice?: string;
|
||||
// 每日不同半场价格
|
||||
halfPrices?: string;
|
||||
// 儿童价
|
||||
childrenPrice?: string;
|
||||
// 星期选择
|
||||
week?: string;
|
||||
// 排序
|
||||
sortNumber?: number;
|
||||
// 关联id
|
||||
sid?: number;
|
||||
// 是否关闭,1开启,2关闭
|
||||
isStatus?: string;
|
||||
// 是否免费:1免费,2收费
|
||||
isFree?: string;
|
||||
// 开始时间
|
||||
startTime?: string;
|
||||
// 儿童价
|
||||
createTime?: number;
|
||||
//
|
||||
updateTime?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 搜索条件
|
||||
*/
|
||||
export interface BookingPeriodParam extends PageParam {
|
||||
id?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user