fusenapi/model/gmodel/fs_product_price_gen.go

31 lines
1.6 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_price 阶梯价格表
2023-06-16 11:04:13 +00:00
type FsProductPrice struct {
2023-06-19 10:27:31 +00:00
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
Sn *string `gorm:"default:'';" json:"sn"` // 唯一编码
Title *string `gorm:"default:'';" json:"title"` // 标题描述
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
MaterialId *int64 `gorm:"index;default:0;" json:"material_id"` // 材质ID
SizeId *int64 `gorm:"index;default:0;" json:"size_id"` // 尺寸ID
EachBoxNum *int64 `gorm:"default:0;" json:"each_box_num"` // 每一箱的个数
EachBoxWeight *float64 `gorm:"default:0.00;" json:"each_box_weight"` // 每一箱的重量 单位KG
MinBuyNum *int64 `gorm:"default:0;" json:"min_buy_num"` // 最少购买量
StepNum *string `gorm:"default:'';" json:"step_num"` // 数量阶梯 eg:10,20,30
StepPrice *string `gorm:"default:'';" json:"step_price"` // 价格阶梯 eg:100,50,25
Status *int64 `gorm:"default:1;" json:"status"` // 是否可用
IsDefault *int64 `gorm:"default:0;" json:"is_default"` // 是否默认
2023-06-16 11:04:13 +00:00
}
type FsProductPriceModel struct {
db *gorm.DB
name string
}
2023-06-16 11:04:13 +00:00
func NewFsProductPriceModel(db *gorm.DB) *FsProductPriceModel {
return &FsProductPriceModel{db: db, name: "fs_product_price"}
}