fix: 修复文件编码问题

This commit is contained in:
Ray.Hao
2026-01-29 10:35:53 +08:00
parent 6ff4a65ec9
commit da7163f463
23 changed files with 279 additions and 128 deletions

View File

@@ -21,9 +21,9 @@ export interface LogItem {
/** 日志内容 */
content: string;
/** 请求路径 */
requestUri: string;
requestUri?: string;
/** 请求方法 */
method: string;
method?: string;
/** IP地址 */
ip: string;
/** 地区 */
@@ -34,6 +34,10 @@ export interface LogItem {
os: string;
/** 执行时间(毫秒) */
executionTime: number;
/** 创建人ID */
createBy?: string;
/** 操作时间 */
createTime?: string;
/** 操作人 */
operator: string;
}

View File

@@ -26,10 +26,10 @@ export interface NoticeForm {
type?: number;
/** 通知等级 */
level?: string;
/** 发布状态(0:草稿;1:已发布;2:已撤回) */
publishStatus?: number;
/** 目标用户ID(多个以英文逗号(,)分割) */
targetUserIds?: string;
/** 发布状态(0:草稿;1:已发布;-1:已撤回) */
status?: number;
/** 目标用户ID列表 */
targetUsers?: number[];
/** 目标类型 (1:全部,2:指定用户等) */
targetType?: number;
}