fusenapi/model/gmodel/fs_product_gen.go

48 lines
3.2 KiB
Go
Raw Normal View History

2023-06-19 01:53:35 +00:00
package gmodel
2023-06-16 11:04:13 +00:00
import (
"gorm.io/gorm"
)
2023-06-16 11:29:48 +00:00
// fs_product 产品表
2023-06-16 11:04:13 +00:00
type FsProduct struct {
2023-06-19 10:27:31 +00:00
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
Sn *string `gorm:"unique_key;default:'';" json:"sn"` // 商品编号 P98f087j
Type *int64 `gorm:"default:0;" json:"type"` // 分类ID
Title *string `gorm:"default:'';" json:"title"` // 名称
TitleCn *string `gorm:"default:'';" json:"title_cn"` // 中文名称
Cover *string `gorm:"default:'';" json:"cover"` // 封面图
Imgs *string `gorm:"default:'';" json:"imgs"` // 一个或多个介绍图或视频
Keywords *string `gorm:"default:'';" json:"keywords"` // 关键字
Intro *string `gorm:"default:'';" json:"intro"` // 简要描述
Sort *int64 `gorm:"default:0;" json:"sort"` // 排序
SelledNum *int64 `gorm:"default:0;" json:"selled_num"` // 已卖数量
2023-08-18 03:41:36 +00:00
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
2023-06-19 10:27:31 +00:00
View *int64 `gorm:"default:0;" json:"view"` // 浏览量
2023-08-18 03:41:36 +00:00
SizeIds *string `gorm:"default:'';" json:"size_ids"` // 尺寸 1,2,3,4
2023-06-19 10:27:31 +00:00
MaterialIds *string `gorm:"default:'';" json:"material_ids"` // 材质 1,2,3
2023-08-18 03:41:36 +00:00
TagIds *string `gorm:"default:'';" json:"tag_ids"` // 标签 逗号间隔
2023-08-31 03:04:27 +00:00
Status *int64 `gorm:"default:1;" json:"status"` // 状态位 弃用
2023-06-19 10:27:31 +00:00
ProduceDays *int64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *int64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
CoverImg *string `gorm:"default:'';" json:"cover_img"` // 背景图
IsShelf *int64 `gorm:"default:1;" json:"is_shelf"` // 是否上架
IsRecommend *int64 `gorm:"default:1;" json:"is_recommend"` // 是否推荐
IsHot *int64 `gorm:"default:1;" json:"is_hot"` // 是否热销
IsProtection *int64 `gorm:"default:1;" json:"is_protection"` // 是否环保
IsMicrowave *int64 `gorm:"default:1;" json:"is_microwave"` // 是否可微波炉
IsDel *int64 `gorm:"default:0;" json:"is_del"` // 是否删除
RecommendProduct *string `gorm:"default:'';" json:"recommend_product"` //
RecommendProductSort *string `gorm:"default:'';" json:"recommend_product_sort"` //
SceneIds *string `gorm:"default:'';" json:"scene_ids"` //
2023-09-07 10:28:19 +00:00
IsCustomization *int64 `gorm:"default:0;" json:"is_customization"` // 是否可定制
2023-06-16 11:04:13 +00:00
}
type FsProductModel struct {
db *gorm.DB
name string
}
2023-06-16 11:04:13 +00:00
func NewFsProductModel(db *gorm.DB) *FsProductModel {
return &FsProductModel{db: db, name: "fs_product"}
}