go-gorm / datatypes

GORM Customized Data Types Collection
https://gorm.io/docs/data_types.html
MIT License
674 stars 111 forks source link

datatypes.JSONSlice not found #245

Open AzraelJi opened 4 months ago

AzraelJi commented 4 months ago

type Rule struct { ID uint64 gorm:"column:id" db:"id" Content datatypes.JSONSlice[Tag] gorm:"column:content" type:"json"
Version int64 gorm:"column:version" db:"version" // 版本号,时间戳毫秒 CreatedAt time.Time gorm:"column:created_at" db:"created_at" UpdatedAt time.Time gorm:"column:updated_at" db:"updated_at" DeletedAt gorm.DeletedAt gorm:"column:deleted_at" db:"deleted_at" }

JSONSlice is error

Rezwanul-Haque commented 4 months ago

Please share some more details like version info of gorm.io/datatypes, the error details, etc.

AzraelJi commented 4 months ago

gorm.io/gorm v1.25.2