product_plan.go 1.5 KB
package models

import (
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-manufacture/pkg/domain"
	"time"
)

type ProductPlan struct {
	tableName string `comment:"生产计划" pg:"manufacture.product_plan"`
	// 生产计划ID
	ProductPlanId int `comment:"生产计划ID" pg:"pk:product_plan_id"`
	// 企业id
	CompanyId int `comment:"企业id"`
	// 组织ID
	OrgId int `comment:"组织ID"`
	// 批号
	BatchNumber string `comment:"批号"`
	// 生产日期
	ProductDate time.Time `comment:"生产日期"`
	// 车间
	Workshop *domain.Workshop `comment:"车间"`
	// 上班班次 1:全天  2:白班 4:中班  8:夜班
	WorkOn int `comment:"上班班次 1:全天  2:白班 4:中班  8:夜班"`
	// 机台 (A、B、C、D 区分机器大小)
	Machine string `comment:"机台 (A、B、C、D 区分机器大小)"`
	// 计划的产品名称
	PlanProductName string `comment:"计划的产品名称"`
	// 计划投入
	PlanDevoted *domain.UnitQuantity `comment:"计划投入"`
	// 计划状态 (1:上线 2:下线  默认下线)
	PlanStatus int `comment:"计划状态 (1:上线 2:下线  默认下线)"`
	// 工作位置
	WorkStation *domain.WorkStation `comment:"工作位置"`
	// 备注
	Remark string `comment:"备注"`
	// 创建时间
	CreatedAt time.Time `comment:"创建时间"`
	// 更新时间
	UpdatedAt time.Time `comment:"更新时间"`
	// 删除时间
	DeletedAt time.Time `pg:",soft_delete" comment:"删除时间"`
	// 扩展数据
	Ext *domain.Ext `comment:"扩展数据"`
}