13 lines
159 B
Go
13 lines
159 B
Go
package models
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type CartItem struct {
|
|
gorm.Model
|
|
SessionId string `gorm:"index"`
|
|
ShopItemId int `gorm:"index"`
|
|
Quantity int
|
|
}
|