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.
43 lines
1.1 KiB
43 lines
1.1 KiB
import request from '@/config/axios'
|
|
|
|
export interface SmsChannelVO {
|
|
id: number
|
|
code: string
|
|
status: number
|
|
signature: string
|
|
remark: string
|
|
apiKey: string
|
|
apiSecret: string
|
|
callbackUrl: string
|
|
createTime: Date
|
|
}
|
|
|
|
// 查询短信渠道列表
|
|
export const getSmsChannelPage = (params: PageParam) => {
|
|
return request.get({ url: '/system/sms-channel/page', params })
|
|
}
|
|
|
|
// 获得短信渠道精简列表
|
|
export function getSimpleSmsChannelList() {
|
|
return request.get({ url: '/system/sms-channel/list-all-simple' })
|
|
}
|
|
|
|
// 查询短信渠道详情
|
|
export const getSmsChannel = (id: number) => {
|
|
return request.get({ url: '/system/sms-channel/get?id=' + id })
|
|
}
|
|
|
|
// 新增短信渠道
|
|
export const createSmsChannel = (data: SmsChannelVO) => {
|
|
return request.post({ url: '/system/sms-channel/create', data })
|
|
}
|
|
|
|
// 修改短信渠道
|
|
export const updateSmsChannel = (data: SmsChannelVO) => {
|
|
return request.put({ url: '/system/sms-channel/update', data })
|
|
}
|
|
|
|
// 删除短信渠道
|
|
export const deleteSmsChannel = (id: number) => {
|
|
return request.delete({ url: '/system/sms-channel/delete?id=' + id })
|
|
}
|
|
|