2023-06-19 01:53:35 +00:00
|
|
|
package gmodel
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// fs_quotation_product 报价单产品表
|
|
|
|
type FsQuotationProduct struct {
|
2023-08-18 03:41:36 +00:00
|
|
|
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` // ID
|
|
|
|
QuotationId *int64 `gorm:"index;default:0;" json:"quotation_id"` // 报价单id
|
|
|
|
Name *string `gorm:"default:'';" json:"name"` // 产品名
|
|
|
|
Size *string `gorm:"default:'';" json:"size"` // 产品规格
|
|
|
|
Cycle *int64 `gorm:"default:0;" json:"cycle"` // 交付周期
|
|
|
|
IsGift *int64 `gorm:"default:0;" json:"is_gift"` // 是否赠品
|
|
|
|
Img *string `gorm:"default:'';" json:"img"` // 效果图
|
|
|
|
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 1启用0停用
|
|
|
|
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
|
|
|
|
Sort *int64 `gorm:"default:0;" json:"sort"` // 排序
|
|
|
|
Sid *string `gorm:"default:'';" json:"sid"` // 前端sid
|
|
|
|
PriceInfo *string `gorm:"default:'';" json:"price_info"` // 价格信息
|
|
|
|
Remark *string `gorm:"default:'';" json:"remark"` // 备注
|
|
|
|
Num *int64 `gorm:"default:0;" json:"num"` // 产品数量
|
|
|
|
ShowSizeTips *int64 `gorm:"default:0;" json:"show_size_tips"` // 是否显示提示
|
|
|
|
ShowSizeList *int64 `gorm:"default:0;" json:"show_size_list"` // 是否显示规格列表
|
|
|
|
ProductId *int64 `gorm:"default:0;" json:"product_id"` // 产品id
|
2023-06-16 11:04:13 +00:00
|
|
|
}
|
2023-07-20 02:13:18 +00:00
|
|
|
type FsQuotationProductModel struct {
|
|
|
|
db *gorm.DB
|
|
|
|
name string
|
|
|
|
}
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
func NewFsQuotationProductModel(db *gorm.DB) *FsQuotationProductModel {
|
2023-07-20 02:13:18 +00:00
|
|
|
return &FsQuotationProductModel{db: db, name: "fs_quotation_product"}
|
2023-06-16 11:04:13 +00:00
|
|
|
}
|