| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import request from '@/utils/request'
- // 查询aiSIP外呼网关列表
- export function listAiSipCallGateway(query) {
- return request({
- url: '/company/aiSipCall/gateway/list',
- method: 'get',
- params: query
- })
- }
- // 查询aiSIP外呼网关列表
- export function remoteList(data) {
- return request({
- url: '/company/aiSipCall/gateway/remoteList',
- method: 'post',
- data: data
- })
- }
- // 查询aiSIP外呼网关详细
- export function getAiSipCallGateway(id) {
- return request({
- url: '/company/aiSipCall/gateway/' + id,
- method: 'get'
- })
- }
- // 新增aiSIP外呼网关
- export function addAiSipCallGateway(data) {
- return request({
- url: '/company/aiSipCall/gateway',
- method: 'post',
- data: data
- })
- }
- // 修改aiSIP外呼网关
- export function updateAiSipCallGateway(data) {
- return request({
- url: '/company/aiSipCall/gateway',
- method: 'put',
- data: data
- })
- }
- // 删除aiSIP外呼网关
- export function delAiSipCallGateway(id) {
- return request({
- url: '/company/aiSipCall/gateway/' + id,
- method: 'delete'
- })
- }
- // 导出aiSIP外呼网关
- export function exportAiSipCallGateway(query) {
- return request({
- url: '/company/aiSipCall/gateway/export',
- method: 'get',
- params: query
- })
- }
|