Files
bj_power/bj_power_wms/schema/semi_finished.go
T

37 lines
1.2 KiB
Go
Raw Normal View History

2026-08-28 15:06:01 +08:00
package schema
import (
"entgo.io/ent"
"entgo.io/ent/schema/field"
"entgo.io/ent/schema/index"
)
// SemiFinished 半成品库存
// 【已废弃 2026-09-07】半成品已收编进统一库存主表 inventoriescategory=2),
// 本表仅保留历史数据(存量已迁移),新代码一律读写 inventories,禁止再写本表。
2026-08-28 15:06:01 +08:00
// 记录已完成工序,支持流转
type SemiFinished struct {
ent.Schema
}
func (SemiFinished) Fields() []ent.Field {
return []ent.Field{
field.String("sn").Unique().Comment("半成品 SN"),
field.String("material_code").Optional().Comment("物料编码(MES 未传时按 SN 反查,可空)"),
2026-08-28 15:06:01 +08:00
field.String("completed_process").Optional().Comment("已完成工序(如 135)"),
field.Int("quantity").Default(1).Comment("数量"),
field.String("zone_code").Optional().Comment("所在区域"),
field.String("status").Default("在库").Comment("在库/出库/使用"),
field.String("order_no").Optional().Comment("关联工单"),
field.Int64("created_at").DefaultFunc(nowUnix),
field.Int64("updated_at").DefaultFunc(nowUnix),
}
}
func (SemiFinished) Indexes() []ent.Index {
return []ent.Index{
index.Fields("material_code"),
index.Fields("status"),
}
}