import request from '@/utils/request' // 查询卡商-银行卡列表 export function listCarddealerWithdrawCard(query) { return request({ url: '/carddealer/carddealerWithdrawCard/list', method: 'get', params: query }) } // 查询卡商-银行卡详细 export function getCarddealerWithdrawCard(id) { return request({ url: '/carddealer/carddealerWithdrawCard/' + id, method: 'get' }) } // 新增卡商-银行卡 export function addCarddealerWithdrawCard(data) { return request({ url: '/carddealer/carddealerWithdrawCard', method: 'post', data: data }) } // 修改卡商-银行卡 export function updateCarddealerWithdrawCard(data) { return request({ url: '/carddealer/carddealerWithdrawCard', method: 'put', data: data }) } // 删除卡商-银行卡 export function delCarddealerWithdrawCard(id) { return request({ url: '/carddealer/carddealerWithdrawCard/' + id, method: 'delete' }) } // 导出卡商-银行卡 export function exportCarddealerWithdrawCard(query) { return request({ url: '/carddealer/carddealerWithdrawCard/export', method: 'get', params: query }) }