feat(schedule): remove sourceType from schedule models and payloads

This commit is contained in:
mlogclub
2026-04-29 15:09:35 +08:00
parent e56fe82b3a
commit 6331ce32c4
12 changed files with 81 additions and 119 deletions
-2
View File
@@ -510,7 +510,6 @@ export type AdminAgentTeamSchedule = {
teamName?: string
startAt: string
endAt: string
sourceType: string
remark: string
}
@@ -518,7 +517,6 @@ export type CreateAdminAgentTeamSchedulePayload = {
teamId: number
startAt: string
endAt: string
sourceType: string
remark: string
}