LFPay admin web
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.
 
 
 
 

44 lines
818 B

import request from '@/utils/request'
// 查询手续费记录列表
export function listFeeRecord(query) {
return request({
url: '/business/feeRecord/list',
method: 'get',
params: query
})
}
// 查询手续费记录详细
export function getFeeRecord(id) {
return request({
url: '/business/feeRecord/' + id,
method: 'get'
})
}
// 新增手续费记录
export function addFeeRecord(data) {
return request({
url: '/business/feeRecord',
method: 'post',
data: data
})
}
// 修改手续费记录
export function updateFeeRecord(data) {
return request({
url: '/business/feeRecord',
method: 'put',
data: data
})
}
// 删除手续费记录
export function delFeeRecord(id) {
return request({
url: '/business/feeRecord/' + id,
method: 'delete'
})
}