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.
53 lines
1.1 KiB
53 lines
1.1 KiB
import request from '@/utils/request'
|
|
|
|
// 查询承兑商质押金费率配置列表
|
|
export function listOtcStoreBondConfig(query) {
|
|
return request({
|
|
url: '/otc/OtcStoreBondConfig/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询承兑商质押金费率配置详细
|
|
export function getOtcStoreBondConfig(id) {
|
|
return request({
|
|
url: '/otc/OtcStoreBondConfig/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增承兑商质押金费率配置
|
|
export function addOtcStoreBondConfig(data) {
|
|
return request({
|
|
url: '/otc/OtcStoreBondConfig',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改承兑商质押金费率配置
|
|
export function updateOtcStoreBondConfig(data) {
|
|
return request({
|
|
url: '/otc/OtcStoreBondConfig',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除承兑商质押金费率配置
|
|
export function delOtcStoreBondConfig(id) {
|
|
return request({
|
|
url: '/otc/OtcStoreBondConfig/' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 导出承兑商质押金费率配置
|
|
export function exportOtcStoreBondConfig(query) {
|
|
return request({
|
|
url: '/otc/OtcStoreBondConfig/export',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|