Files
jczxw-pc/app/api/user/point-log/model/index.ts
2026-04-23 16:30:57 +08:00

30 lines
617 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 UserPointLog {
logId?: number
userId?: number
/** 积分变动量(正数增加,负数减少) */
points?: number
/** 场景类型1 充值赠送 2 消费 3 签到 4 活动 5 兑换 9 系统调整 */
scene?: number
/** 场景描述 */
describe?: string
remark?: string
status?: number
tenantId?: number
createTime?: string
}
/**
* 积分明细查询条件
*/
export interface UserPointLogParam extends PageParam {
userId?: number
scene?: number
createTimeStart?: string
createTimeEnd?: string
}