review:【system】邮箱管理的开发:70% 评审具体的实现

review:【system】短信管理的开发
This commit is contained in:
YunaiV
2025-12-20 20:30:15 +08:00
parent c48b4b908f
commit 0357425ac7
19 changed files with 230 additions and 72 deletions

View File

@@ -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
}

View File

@@ -1,6 +1,7 @@
import type { PageParam, PageResult } from '@/http/types'
import { http } from '@/http/http'
/** 邮件日志信息 */
export interface MailLog {
id?: number
userId?: number

View File

@@ -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>