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

58 lines
1.1 KiB
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 BookingCard {
// ID
cardId?: number;
// 会员卡名称
cardName?: string;
// 会员卡标识
cardCode?: string;
// 会员卡介绍
cardDesc?: string;
// 卡类型1成人卡2儿童卡
cardType?: number;
// IC卡类型1年卡2次卡3月卡4会员IC卡5充值卡
type?: number;
// 会员卡图片
image?: string;
// 价格
price?: string;
// 次数
number?: number;
// 月份
month?: number;
// 折扣
discount?: string;
// 老师介绍
content?: string;
// 关联用户
userId?: number;
// 商户ID
merchantId?: number;
// 商户类型
merchantType?: string;
// 适用的场馆ID
merchantIds?: string;
// 备注
comments?: string;
// 状态
status?: number;
// 排序号
sortNumber?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 会员卡搜索条件
*/
export interface BookingCardParam extends PageParam {
cardId?: number;
keywords?: string;
}