重构VUE3【站内信-模板管理】

This commit is contained in:
咱哥丶
2023-04-15 12:25:11 +08:00
parent c461800eea
commit 776eb3a7b0
4 changed files with 407 additions and 273 deletions

View File

@ -1,13 +1,14 @@
import request from '@/config/axios'
export interface NotifyTemplateVO {
id: number
id: number | null
name: string
nickname: string
code: string
content: string
type: number
type: number | null
params: string
status: number
status: number | null
remark: string
}
@ -19,7 +20,7 @@ export interface NotifyTemplatePageReqVO extends PageParam {
}
export interface NotifySendReqVO {
userId: number
userId: number | null
templateCode: string
templateParams: Map<String, Object>
}