fusenapi/model/gmodel_gen/fs_cart_gen.go

30 lines
1.6 KiB
Go
Raw Normal View History

2023-06-15 03:05:33 +00:00
package model
import (
2023-06-16 02:58:43 +00:00
"gorm.io/gorm"
2023-06-16 10:52:24 +00:00
"time"
2023-06-15 03:05:33 +00:00
)
2023-06-16 10:52:24 +00:00
// fs_cart 购物车
2023-06-15 03:05:33 +00:00
type FsCart struct {
2023-06-16 10:52:24 +00:00
Id uint64 `gorm:"primary_key;default:'0';" json:"id"` // id
UserId *uint64 `gorm:"index;default:'0';" json:"user_id"` //
ProductId *uint64 `gorm:"index;default:'0';" json:"product_id"` // 产品ID
TemplateId *uint64 `gorm:"index;default:'0';" json:"template_id"` // 模板ID
PriceId *uint64 `gorm:"index;default:'0';" json:"price_id"` // 价格ID
MaterialId *uint64 `gorm:"index;default:'0';" json:"material_id"` // 材质ID
SizeId *uint64 `gorm:"index;default:'0';" json:"size_id"` // 尺寸ID
BuyNum *uint64 `gorm:"default:'0';" json:"buy_num"` // 购买数量
Cover *string `gorm:"default:'';" json:"cover"` // 截图
DesignId *uint64 `gorm:"index;default:'0';" json:"design_id"` // 设计ID
Ctime *uint64 `gorm:"default:'0';" json:"ctime"` //
Status *uint64 `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-15 03:05:33 +00:00
}
type FsCartModel struct{ db *gorm.DB }
func NewFsCartModel(db *gorm.DB) *FsCartModel { return &FsCartModel{db} }