YiTao/model/history_model.go
wzj 735aad8cc1
All checks were successful
Deploy on Tag / build-and-deploy (push) Successful in 38s
新增:历史记录与推荐接口
2025-01-21 14:37:34 +08:00

16 lines
242 B
Go

package model
type HistoryModel struct {
BaseModel
UserId uint
ItemId uint
Count int
User UserModel `gorm:"foreignKey:UserId"`
Item ItemModel `gorm:"foreignKey:ItemId"`
}
func (HistoryModel) TableName() string {
return "history"
}