1package model 2 3type TaskItem struct { 4 Key string `json:"key"` 5 PersistData string `gorm:"type:text" json:"persist_data"` 6} 7 8