zhangzengfei
2024-04-29 fe763eba27addfe615d2c107b8984484baef9a23
models/cache.go
@@ -2,6 +2,7 @@
type Cache struct {
   Id         uint   `gorm:"column:id;primary_key;auto_increment;unique;not null;"`
   Type       string `gorm:"column:type;"` // 消息类型 1400, basic
   Data       string `gorm:"column:data;type:text"`
   CreateTime int64  `gorm:"column:create_time;"`
   Retry      int    `gorm:"column:retry;"`