优化网站导航模块
This commit is contained in:
31
src/api/think/thinkCardUserLog/model/index.ts
Normal file
31
src/api/think/thinkCardUserLog/model/index.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export interface ThinkCardUserLog {
|
||||
//
|
||||
id?: number;
|
||||
// 会员卡类型:1年卡,2次卡,3月卡,4会员VIP,VIP充值卡
|
||||
type?: number;
|
||||
// 卡类型:1成人卡,2儿童卡
|
||||
cardType?: string;
|
||||
// vip卡等级类型:1特殊vip卡,2普通vip卡
|
||||
vipType?: string;
|
||||
// 统计金额(正是收入,负是冲抵(退卡后产生))
|
||||
price?: string;
|
||||
//
|
||||
createTime?: number;
|
||||
// 虚拟卡ID
|
||||
usersVipId?: number;
|
||||
// 实体卡id
|
||||
cardId?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 搜索条件
|
||||
*/
|
||||
export interface ThinkCardUserLogParam extends PageParam {
|
||||
id?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user