zhangzengfei
2024-05-18 9be303b5cca06c62ed4ba783f9b1e0a4145e7009
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;"`