feat: add historical data management

This commit is contained in:
wangxuming
2026-07-22 10:18:49 +08:00
parent 66951b4dc3
commit c6044d972c
23 changed files with 3389 additions and 12 deletions

View File

@@ -130,7 +130,8 @@ type QueueTicket struct {
MissedAt *time.Time
PersonalDataPurgedAt *time.Time
PersonalDataPurgeAt time.Time `gorm:"not null"`
CreatedBy string `gorm:"type:uuid;not null"`
HistoryAnonymizedAt *time.Time
CreatedBy string `gorm:"type:uuid;not null"`
CreatedAt time.Time
UpdatedAt time.Time
}