完成换场地功能

This commit is contained in:
gxwebsoft
2024-05-23 15:42:41 +08:00
parent fc7752cb18
commit 757822f3ba
24 changed files with 2444 additions and 86 deletions

View File

@@ -108,7 +108,11 @@ export interface OrderParam extends PageParam {
orderId?: number;
keywords?: string;
userId?: number;
week?: number;
isStatus?: number;
merchantId?: number;
merchantCode?: string;
merchantName?: string;
startTime?: string;
dateTime?: string;
}

View File

@@ -1,53 +1,65 @@
import type { PageParam } from '@/api';
/**
*
* 场地
*/
export interface OrderInfo {
//
// 自增ID
id?: number;
// 关联订单表id
oid?: number;
// 关联场馆id
sid?: number;
orderId?: number;
// 组合数据:日期+时间段+场馆id+场地id
orderCode?: string;
// 关联商户ID
merchantId?: number;
// 商户名称
merchantName?: string;
// 关联场地id
fid?: number;
// 场
siteName?: string;
// 场地
fieldId?: number;
// 场地名称
fieldName?: string;
// 预约时间段
dateTime?: string;
// 单价
price?: string;
// 儿童价
childrenPrice?: string;
// 成人人数
adultNum?: string;
adultNum?: number;
// 儿童人数
childrenNum?: string;
// 1已付款2未付款3无需付款或占用状态
payStatus?: string;
// 是否免费1免费、2收
childrenNum?: number;
// 0 未付款 1已付款2无需付款或占用状态
payStatus?: number;
// 是否免费:0收费、1免费
isFree?: string;
// 是否支持儿童票:1支持2不支持
// 是否支持儿童票:0不支持、1支持
isChildren?: string;
// 预订类型1全场2半场
type?: string;
// 组合数据:日期+时间段+场馆id+场地id
mergeData?: string;
// 系统版本 0当前版本 其他版本
version?: number;
// 预订类型0全场1半场
isHalf?: string;
// 预约时间段
timePeriod?: string;
// 预定日期
dateTime?: string;
// 开场时间
startTime?: number;
// 下单时间
orderTime?: number;
startTime?: string;
// 结束时间
endTime?: string;
// 毫秒时间戳
timeFlag?: string;
// 备注
comments?: string;
// 用户id
userId?: number;
// 租户id
tenantId?: number;
// 更新时间
updateTime?: string;
// 创建时间
createTime?: string;
}
/**
* 搜索条件
* 场地搜索条件
*/
export interface OrderInfoParam extends PageParam {
id?: number;