完成换场地功能
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user