feat: 短信日志

This commit is contained in:
2025-09-19 15:17:26 +08:00
parent 706d2e2a9f
commit 03009cd64d
3 changed files with 243 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
import { request } from "@umijs/max";
export interface SmsLogVO {
id: number | null;
id: number;
channelId: number | null;
channelCode: string;
templateId: number | null;
@@ -29,7 +29,7 @@ export interface SmsLogVO {
// 查询短信日志列表
export async function getSmsLogPage(params: PageParam) {
return request("/system/sms-channel/page", {
return request("/system/sms-log/page", {
method: "GET",
params,
});