websoft-uniapp仓库模板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
861 B

import type { PageParam } from '@/api';
/**
* 会员卡
*/
export interface Card {
// ID
cardId?: number;
// 会员卡名称
cardName?: string;
// 会员卡标识
cardCode?: string;
// 会员卡图片
image?: string;
// 价格
price?: number;
// 次数
number?: number;
// 月份
month?: number;
// 折扣
discount?: number;
// 老师介绍
content?: string;
// 关联用户
userId?: number;
// 商户ID
merchantId?: number;
// 商户名称
merchantName?: string;
// 商户类型
merchantType?: string;
// 备注
comments?: string;
// 状态
status?: number;
// 排序号
sortNumber?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 会员卡搜索条件
*/
export interface CardParam extends PageParam {
cardId?: number;
keywords?: string;
}