fusenapi/model/gmodel/fs_factory_product_gen.go

27 lines
1.3 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"
)
// 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-08-23 07:08:45 +00:00
OrderDetailTemplateSn *string `gorm:"index;default:'';" json:"order_detail_template_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
}
type FsFactoryProductModel struct {
db *gorm.DB
name string
}
2023-06-16 11:04:13 +00:00
func NewFsFactoryProductModel(db *gorm.DB) *FsFactoryProductModel {
return &FsFactoryProductModel{db: db, name: "fs_factory_product"}
}