2023-06-19 01:53:35 +00:00
|
|
|
package gmodel
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// fs_product_copy1 产品表
|
|
|
|
type FsProductCopy1 struct {
|
2023-06-19 10:27:31 +00:00
|
|
|
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
|
2023-08-23 07:08:45 +00:00
|
|
|
Sn *string `gorm:"unique_key;default:'';" json:"sn"` //
|
2023-06-19 10:27:31 +00:00
|
|
|
Type *int64 `gorm:"default:0;" json:"type"` // 分类ID
|
2023-08-23 07:08:45 +00:00
|
|
|
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"` //
|
2023-06-19 10:27:31 +00:00
|
|
|
Intro *string `gorm:"default:'';" json:"intro"` // 简要描述
|
|
|
|
Sort *int64 `gorm:"default:0;" json:"sort"` // 排序
|
|
|
|
SelledNum *int64 `gorm:"default:0;" json:"selled_num"` // 已卖数量
|
2023-08-23 07:08:45 +00:00
|
|
|
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
|
2023-06-19 10:27:31 +00:00
|
|
|
View *int64 `gorm:"default:0;" json:"view"` // 浏览量
|
|
|
|
SizeIds *string `gorm:"default:'';" json:"size_ids"` //
|
2023-08-23 07:08:45 +00:00
|
|
|
MaterialIds *string `gorm:"default:'';" json:"material_ids"` //
|
2023-06-19 10:27:31 +00:00
|
|
|
TagIds *string `gorm:"default:'';" json:"tag_ids"` //
|
|
|
|
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 是否上架 是否推荐 是否热销 是否环保 是否可加入微波炉 是否刪除
|
|
|
|
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"` // 是否删除
|
2023-06-16 11:04:13 +00:00
|
|
|
}
|
2023-07-20 02:13:18 +00:00
|
|
|
type FsProductCopy1Model struct {
|
|
|
|
db *gorm.DB
|
|
|
|
name string
|
|
|
|
}
|
2023-06-16 11:04:13 +00:00
|
|
|
|
2023-07-20 02:13:18 +00:00
|
|
|
func NewFsProductCopy1Model(db *gorm.DB) *FsProductCopy1Model {
|
|
|
|
return &FsProductCopy1Model{db: db, name: "fs_product_copy1"}
|
|
|
|
}
|