2023-06-19 01:53:35 +00:00
|
|
|
|
package gmodel
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"gorm.io/gorm"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
2023-06-16 11:29:48 +00:00
|
|
|
|
// fs_cart 购物车
|
2023-06-16 11:04:13 +00:00
|
|
|
|
type FsCart struct {
|
2023-06-19 10:27:31 +00:00
|
|
|
|
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` // id
|
2023-08-18 03:41:36 +00:00
|
|
|
|
UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户ID
|
2023-06-19 10:27:31 +00:00
|
|
|
|
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
|
|
|
|
|
TemplateId *int64 `gorm:"index;default:0;" json:"template_id"` // 模板ID
|
|
|
|
|
PriceId *int64 `gorm:"index;default:0;" json:"price_id"` // 价格ID
|
|
|
|
|
MaterialId *int64 `gorm:"index;default:0;" json:"material_id"` // 材质ID
|
|
|
|
|
SizeId *int64 `gorm:"index;default:0;" json:"size_id"` // 尺寸ID
|
|
|
|
|
BuyNum *int64 `gorm:"default:0;" json:"buy_num"` // 购买数量
|
|
|
|
|
Cover *string `gorm:"default:'';" json:"cover"` // 截图
|
|
|
|
|
DesignId *int64 `gorm:"index;default:0;" json:"design_id"` // 设计ID
|
2023-08-18 03:41:36 +00:00
|
|
|
|
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
|
2023-06-19 10:27:31 +00:00
|
|
|
|
Status *int64 `gorm:"default:0;" json:"status"` // 状态位
|
|
|
|
|
OptionalId *int64 `gorm:"index;default:0;" json:"optional_id"` // 选项ID
|
|
|
|
|
IsCheck *int64 `gorm:"default:0;" json:"is_check"` // 是否选中状态(0:未选中,1:选中)
|
|
|
|
|
TsTime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ts_time"` //
|
|
|
|
|
IsEmail *int64 `gorm:"default:0;" json:"is_email"` // 是否发送邮件
|
2023-06-16 11:04:13 +00:00
|
|
|
|
}
|
2023-07-20 02:13:18 +00:00
|
|
|
|
type FsCartModel struct {
|
|
|
|
|
db *gorm.DB
|
|
|
|
|
name string
|
|
|
|
|
}
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
2023-07-20 02:13:18 +00:00
|
|
|
|
func NewFsCartModel(db *gorm.DB) *FsCartModel { return &FsCartModel{db: db, name: "fs_cart"} }
|