Files
guofu-admin/modules/api/booking_____/bookingField/model/index.ts
2024-08-23 22:28:24 +08:00

46 lines
920 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 BookingField {
//
fieldId?: number;
// 场地名称
fieldName?: string;
// 是否有卫生间1有0没有
isToilet?: string;
// 状态0开启1关闭
isStatus?: string;
// 是否重复预订1可以0不可以
isRepeat?: string;
// 是否可预定半场1可以0不可以
isHalf?: string;
// 是否支持儿童价1支持0不支持
isChildren?: string;
// 可重复预订次数
num?: number;
// 排序
sortNumber?: number;
// 关联id
merchantId?: number;
// 显示在第几行
row?: string;
// 备注
comments?: string;
// 状态
status?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 场馆场地搜索条件
*/
export interface BookingFieldParam extends PageParam {
fieldId?: number;
keywords?: string;
}