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.
49 lines
961 B
49 lines
961 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 明细表
|
|
*/
|
|
export interface UserCardLog {
|
|
// 主键ID
|
|
logId?: number;
|
|
// 用户ID
|
|
userId?: number;
|
|
// IC卡类型:1年卡,2次卡,3月卡,4会员IC卡,5充值卡
|
|
type?: number;
|
|
// 变动金额
|
|
money?: string;
|
|
// 变动后余额
|
|
balance?: string;
|
|
// 管理员备注
|
|
remark?: string;
|
|
// 订单编号
|
|
orderNo?: string;
|
|
// 操作人ID
|
|
adminId?: number;
|
|
// 排序(数字越小越靠前)
|
|
sortNumber?: number;
|
|
// 备注
|
|
comments?: string;
|
|
// 状态, 0正常, 1冻结
|
|
status?: number;
|
|
// 是否删除, 0否, 1是
|
|
deleted?: number;
|
|
// 商户ID
|
|
merchantId?: number;
|
|
// 商户编码
|
|
merchantCode?: string;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 注册时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 明细表搜索条件
|
|
*/
|
|
export interface UserCardLogParam extends PageParam {
|
|
logId?: number;
|
|
keywords?: string;
|
|
}
|