19 lines
385 B
TypeScript
19 lines
385 B
TypeScript
import request from '@/config/axios'
|
|
|
|
export interface RecordVO {
|
|
id: number
|
|
bizId: string
|
|
bizType: string
|
|
title: string
|
|
description: string
|
|
point: number
|
|
totalPoint: number
|
|
userId: number
|
|
createDate: Date
|
|
}
|
|
|
|
// 查询用户积分记录列表
|
|
export const getRecordPage = async (params) => {
|
|
return await request.get({ url: `/member/point/record/page`, params })
|
|
}
|