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.0 KiB
53 lines
1.0 KiB
import request from '@/utils/request'
|
|
|
|
// 查询承兑商保证金记录列表
|
|
export function listOtcStoreBond(query) {
|
|
return request({
|
|
url: '/otc/otcStoreBond/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询承兑商保证金记录详细
|
|
export function getOtcStoreBond(id) {
|
|
return request({
|
|
url: '/otc/otcStoreBond/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增承兑商保证金记录
|
|
export function addOtcStoreBond(data) {
|
|
return request({
|
|
url: '/otc/otcStoreBond',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改承兑商保证金记录
|
|
export function updateOtcStoreBond(data) {
|
|
return request({
|
|
url: '/otc/otcStoreBond',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除承兑商保证金记录
|
|
export function delOtcStoreBond(id) {
|
|
return request({
|
|
url: '/otc/otcStoreBond/' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 导出承兑商保证金记录
|
|
export function exportOtcStoreBond(query) {
|
|
return request({
|
|
url: '/otc/otcStoreBond/export',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|