Files
guofu-admin/src/api/think/thinkCardUserLog/model/index.ts
2024-08-23 22:28:24 +08:00

32 lines
663 B
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 ThinkCardUserLog {
//
id?: number;
// 会员卡类型1年卡2次卡3月卡4会员VIPVIP充值卡
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;
}