fix: stabilize inbox confirmation retries

This commit is contained in:
2026-07-21 18:57:38 +08:00
parent 7c363bb473
commit 8767446b78
4 changed files with 67 additions and 39 deletions

View File

@@ -13,6 +13,7 @@ type SenlinAgentInboxItem struct {
Title string
Body string
Status string `gorm:"not null;default:open"`
ConfirmedCount int `gorm:"not null;default:0"`
CreatedAt time.Time
UpdatedAt time.Time
}