product_job.go 861 字节
package models

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

type ProductJob struct {
	tableName string `comment:"工位(车间-生产线-工段-工位)" pg:"manufacture.product_job,alias:product_job"`
	// 工位ID
	ProductJobId int `comment:"工位ID" pg:"pk:product_job_id"`
	// 企业id
	CompanyId int `comment:"企业id"`
	// 组织ID
	OrgId int `comment:"组织ID"`
	// 工位名称
	JobName string `comment:"工位名称"`
	// 创建时间
	CreatedAt time.Time `comment:"创建时间"`
	// 更新时间
	UpdatedAt time.Time `comment:"更新时间"`
	// 删除时间
	DeletedAt time.Time `comment:"删除时间"`
	// 工作位置
	WorkStation *domain.WorkStation `comment:"工作位置"`
	// 关联设备列表
	RelatedDevices []int `pg:",soft_delete" comment:"关联设备列表" pg:",array"`
}