fix:修复 createTime 为 date,并且为可选的

This commit is contained in:
YunaiV
2025-12-16 23:53:40 +08:00
parent d971aba582
commit 2dc5ed888f
17 changed files with 109 additions and 159 deletions

View File

@@ -10,7 +10,7 @@ export interface Dept {
leaderUserId?: number
phone?: string
email?: string
createTime?: string
createTime?: Date
children?: Dept[]
}