review:【system】邮箱管理的开发:70% 评审具体的实现
review:【system】短信管理的开发
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import type { PageParam, PageResult } from '@/http/types'
|
||||
import { http } from '@/http/http'
|
||||
|
||||
/** 邮箱账号信息 */
|
||||
export interface MailAccount {
|
||||
id?: number
|
||||
mail: string
|
||||
@@ -10,7 +11,6 @@ export interface MailAccount {
|
||||
port: number
|
||||
sslEnable: boolean
|
||||
starttlsEnable: boolean
|
||||
remark?: string
|
||||
createTime?: string
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import type { PageParam, PageResult } from '@/http/types'
|
||||
import { http } from '@/http/http'
|
||||
|
||||
/** 邮件日志信息 */
|
||||
export interface MailLog {
|
||||
id?: number
|
||||
userId?: number
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import type { PageParam, PageResult } from '@/http/types'
|
||||
import { http } from '@/http/http'
|
||||
|
||||
/** 邮件模板信息 */
|
||||
export interface MailTemplate {
|
||||
id?: number
|
||||
name: string
|
||||
@@ -15,6 +16,7 @@ export interface MailTemplate {
|
||||
createTime?: string
|
||||
}
|
||||
|
||||
/** 发送邮件请求 */
|
||||
export interface MailSendReqVO {
|
||||
templateCode: string
|
||||
templateParams: Record<string, any>
|
||||
|
||||
Reference in New Issue
Block a user