2023-06-19 01:53:35 +00:00
|
|
|
|
package gmodel
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"gorm.io/gorm"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// fs_factory_product 工厂生产表(废弃)
|
|
|
|
|
type FsFactoryProduct struct {
|
2023-06-19 10:27:31 +00:00
|
|
|
|
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
|
2023-06-16 11:29:48 +00:00
|
|
|
|
FactoryId *int64 `gorm:"index;default:0;" json:"factory_id"` // 工厂id
|
|
|
|
|
OrderId *int64 `gorm:"index;default:0;" json:"order_id"` // 订单id
|
2023-06-16 11:04:13 +00:00
|
|
|
|
OrderDetailTemplateSn *string `gorm:"index;default:'';" json:"order_detail_template_sn"` // 产品模板sn
|
2023-06-16 11:29:48 +00:00
|
|
|
|
Num *int64 `gorm:"default:0;" json:"num"` // 数量
|
|
|
|
|
IsProduct *int64 `gorm:"default:0;" json:"is_product"` // 是否开始生产( 0:未开始 ,1:已开始)
|
|
|
|
|
IsEnd *int64 `gorm:"default:0;" json:"is_end"` // 是否完成(0:未完成,1:已完成)
|
|
|
|
|
IsDeliver *int64 `gorm:"default:0;" json:"is_deliver"` // 是否已发货(0:未发货,1:已发货)
|
|
|
|
|
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 创建时间
|
2023-06-16 11:04:13 +00:00
|
|
|
|
}
|
2023-07-20 02:13:18 +00:00
|
|
|
|
type FsFactoryProductModel struct {
|
|
|
|
|
db *gorm.DB
|
|
|
|
|
name string
|
|
|
|
|
}
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
2023-07-20 02:13:18 +00:00
|
|
|
|
func NewFsFactoryProductModel(db *gorm.DB) *FsFactoryProductModel {
|
|
|
|
|
return &FsFactoryProductModel{db: db, name: "fs_factory_product"}
|
|
|
|
|
}
|