10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import { get } from '@/api/request'
|
|
|
|
export function getRevenueStatistics() {
|
|
return get('/api/payment/revenue/statistics')
|
|
}
|
|
|
|
export function getPaymentRecords(params?: any) {
|
|
return get('/api/payment/revenue/records', params)
|
|
}
|