🐛 修复 sms 在 IDEA 报错的问题

This commit is contained in:
YunaiV
2023-12-02 22:39:52 +08:00
parent dd4a77ff22
commit 3407cc66a9
6 changed files with 20 additions and 20 deletions

View File

@ -19,7 +19,7 @@ export const getSmsChannelPage = (params: PageParam) => {
// 获得短信渠道精简列表
export function getSimpleSmsChannelList() {
return request.get({ url: '/system/sms-channel/list-all-simple' })
return request.get({ url: '/system/sms-channel/simple-list' })
}
// 查询短信渠道详情

View File

@ -1,15 +1,15 @@
import request from '@/config/axios'
export interface SmsTemplateVO {
id: number | null
type: number | null
id?: number
type?: number
status: number
code: string
name: string
content: string
remark: string
apiTemplateId: string
channelId: number | null
channelId?: number
channelCode?: string
params?: string[]
createTime?: Date