Files
bj_power/bj_power_mes/schema/association_trace.go
T
2026-08-28 15:06:01 +08:00

42 lines
1.3 KiB
Go

package schema
import (
"time"
"entgo.io/ent"
"entgo.io/ent/dialect"
"entgo.io/ent/dialect/entsql"
"entgo.io/ent/schema"
"entgo.io/ent/schema/field"
"entgo.io/ent/schema/index"
)
// AssociationTrace 成品追溯关联:成品SN ↔ 结构件批次 + 精密件SN
type AssociationTrace struct {
ent.Schema
}
func (AssociationTrace) Annotations() []schema.Annotation {
return []schema.Annotation{entsql.Annotation{Table: "association_trace"}}
}
func (AssociationTrace) Fields() []ent.Field {
return []ent.Field{
field.Int("id").Positive(),
field.String("finishedSn").Unique().MaxLen(64).Comment("成品SN(主件)"),
field.String("orderNo").Default("").MaxLen(64),
field.String("processCode").Default("").MaxLen(64).Comment("成品的工序组合"),
field.JSON("batchItems", []string{}).Optional().SchemaType(map[string]string{
dialect.Postgres: "jsonb",
}).Comment("结构件批次号列表"),
field.JSON("serialItems", []string{}).Optional().SchemaType(map[string]string{
dialect.Postgres: "jsonb",
}).Comment("精密件SN码列表"),
field.String("operator").Default("").MaxLen(64).Comment("完工关联登记人"),
field.Time("createdAt").Default(time.Now).Immutable(),
}
}
func (AssociationTrace) Indexes() []ent.Index {
return []ent.Index{index.Fields("finishedSn").Unique()}
}