Files
bj_power/bj_power_mes/schema/process_step.go
T
SunYF 1cc93795ce feat(mes): 添加定时同步可生产数量到WMS及BOM项相关标准字段
- 在main.go中添加定时任务每10分钟同步可生产数量到WMS系统
- 为BomItem实体添加relatedStandard字段及相关CRUD方法
- 为InspectionRecord实体添加reportNo、materialCode、materialName等字段
- 更新ent schema确保新字段的验证和默认值设置
- 添加必要的数据库迁移和字段映射逻辑
2026-09-17 12:49:07 +08:00

46 lines
1.5 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"
)
// ProcessStep 工序步骤模板:一份工艺流程包含多个采集/考核步骤(按 seq 顺序执行)
type ProcessStep struct {
ent.Schema
}
func (ProcessStep) Annotations() []schema.Annotation {
return []schema.Annotation{entsql.Annotation{Table: "process_step"}}
}
func (ProcessStep) Fields() []ent.Field {
return []ent.Field{
field.Int("id").Positive(),
field.Int("flowId").Optional().Comment("所属工艺流程图ID"),
field.Int("seq").Default(1).Comment("步骤序号"),
field.String("name").MaxLen(128).Comment("步骤名称"),
field.String("collectType").Default("NONE").MaxLen(20).Comment("AUTO/MANUAL/NONE"),
field.Bool("isTorque").Default(false).Comment("是否拧紧采集"),
field.Bool("needCheck").Default(false).Comment("是否需要检测确认(报工前须检验通过)"),
// 本步骤图纸/附件(按工序分发到工位终端),多份,存 {name,url} 列表
field.JSON("attachment", []map[string]string{}).Optional().SchemaType(map[string]string{
dialect.Postgres: "jsonb",
}).Comment("本步骤图纸/附件列表 [{name,url}]"),
field.String("remark").Default("").MaxLen(255),
field.Time("createdAt").Default(time.Now).Immutable(),
}
}
func (ProcessStep) Indexes() []ent.Index {
return []ent.Index{
index.Fields("flowId"),
}
}