Files
bj_power/bj_power_mes/ent/processflow_create.go
T
SunYF 4ec6784629 feat: 完成MES工位终端系统全量功能迭代
本次提交包含以下核心变更:
1. 新增按钮级权限控制框架与前端权限校验
2. 新增工位管理、工艺流程、巡检终端等核心业务模块
3. 完善用户体系,支持工位终端专属登录权限
4. 新增文件上传下载、报表查询等配套功能
5. 修复多系统兼容性与交互体验问题
6. 完成所有文档与配置项的规范化更新
2026-08-31 08:06:55 +08:00

363 lines
10 KiB
Go

// Code generated by ent, DO NOT EDIT.
package ent
import (
"bj_power_mes/ent/processflow"
"context"
"errors"
"fmt"
"time"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
)
// ProcessFlowCreate is the builder for creating a ProcessFlow entity.
type ProcessFlowCreate struct {
config
mutation *ProcessFlowMutation
hooks []Hook
}
// SetName sets the "name" field.
func (_c *ProcessFlowCreate) SetName(v string) *ProcessFlowCreate {
_c.mutation.SetName(v)
return _c
}
// SetProcessCode sets the "processCode" field.
func (_c *ProcessFlowCreate) SetProcessCode(v int) *ProcessFlowCreate {
_c.mutation.SetProcessCode(v)
return _c
}
// SetPdfFile sets the "pdfFile" field.
func (_c *ProcessFlowCreate) SetPdfFile(v string) *ProcessFlowCreate {
_c.mutation.SetPdfFile(v)
return _c
}
// SetNillablePdfFile sets the "pdfFile" field if the given value is not nil.
func (_c *ProcessFlowCreate) SetNillablePdfFile(v *string) *ProcessFlowCreate {
if v != nil {
_c.SetPdfFile(*v)
}
return _c
}
// SetStatus sets the "status" field.
func (_c *ProcessFlowCreate) SetStatus(v string) *ProcessFlowCreate {
_c.mutation.SetStatus(v)
return _c
}
// SetNillableStatus sets the "status" field if the given value is not nil.
func (_c *ProcessFlowCreate) SetNillableStatus(v *string) *ProcessFlowCreate {
if v != nil {
_c.SetStatus(*v)
}
return _c
}
// SetRemark sets the "remark" field.
func (_c *ProcessFlowCreate) SetRemark(v string) *ProcessFlowCreate {
_c.mutation.SetRemark(v)
return _c
}
// SetNillableRemark sets the "remark" field if the given value is not nil.
func (_c *ProcessFlowCreate) SetNillableRemark(v *string) *ProcessFlowCreate {
if v != nil {
_c.SetRemark(*v)
}
return _c
}
// SetCreatedAt sets the "createdAt" field.
func (_c *ProcessFlowCreate) SetCreatedAt(v time.Time) *ProcessFlowCreate {
_c.mutation.SetCreatedAt(v)
return _c
}
// SetNillableCreatedAt sets the "createdAt" field if the given value is not nil.
func (_c *ProcessFlowCreate) SetNillableCreatedAt(v *time.Time) *ProcessFlowCreate {
if v != nil {
_c.SetCreatedAt(*v)
}
return _c
}
// SetUpdatedAt sets the "updatedAt" field.
func (_c *ProcessFlowCreate) SetUpdatedAt(v time.Time) *ProcessFlowCreate {
_c.mutation.SetUpdatedAt(v)
return _c
}
// SetNillableUpdatedAt sets the "updatedAt" field if the given value is not nil.
func (_c *ProcessFlowCreate) SetNillableUpdatedAt(v *time.Time) *ProcessFlowCreate {
if v != nil {
_c.SetUpdatedAt(*v)
}
return _c
}
// SetID sets the "id" field.
func (_c *ProcessFlowCreate) SetID(v int) *ProcessFlowCreate {
_c.mutation.SetID(v)
return _c
}
// Mutation returns the ProcessFlowMutation object of the builder.
func (_c *ProcessFlowCreate) Mutation() *ProcessFlowMutation {
return _c.mutation
}
// Save creates the ProcessFlow in the database.
func (_c *ProcessFlowCreate) Save(ctx context.Context) (*ProcessFlow, error) {
_c.defaults()
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
}
// SaveX calls Save and panics if Save returns an error.
func (_c *ProcessFlowCreate) SaveX(ctx context.Context) *ProcessFlow {
v, err := _c.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (_c *ProcessFlowCreate) Exec(ctx context.Context) error {
_, err := _c.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (_c *ProcessFlowCreate) ExecX(ctx context.Context) {
if err := _c.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (_c *ProcessFlowCreate) defaults() {
if _, ok := _c.mutation.PdfFile(); !ok {
v := processflow.DefaultPdfFile
_c.mutation.SetPdfFile(v)
}
if _, ok := _c.mutation.Status(); !ok {
v := processflow.DefaultStatus
_c.mutation.SetStatus(v)
}
if _, ok := _c.mutation.Remark(); !ok {
v := processflow.DefaultRemark
_c.mutation.SetRemark(v)
}
if _, ok := _c.mutation.CreatedAt(); !ok {
v := processflow.DefaultCreatedAt()
_c.mutation.SetCreatedAt(v)
}
if _, ok := _c.mutation.UpdatedAt(); !ok {
v := processflow.DefaultUpdatedAt()
_c.mutation.SetUpdatedAt(v)
}
}
// check runs all checks and user-defined validators on the builder.
func (_c *ProcessFlowCreate) check() error {
if _, ok := _c.mutation.Name(); !ok {
return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "ProcessFlow.name"`)}
}
if v, ok := _c.mutation.Name(); ok {
if err := processflow.NameValidator(v); err != nil {
return &ValidationError{Name: "name", err: fmt.Errorf(`ent: validator failed for field "ProcessFlow.name": %w`, err)}
}
}
if _, ok := _c.mutation.ProcessCode(); !ok {
return &ValidationError{Name: "processCode", err: errors.New(`ent: missing required field "ProcessFlow.processCode"`)}
}
if _, ok := _c.mutation.PdfFile(); !ok {
return &ValidationError{Name: "pdfFile", err: errors.New(`ent: missing required field "ProcessFlow.pdfFile"`)}
}
if v, ok := _c.mutation.PdfFile(); ok {
if err := processflow.PdfFileValidator(v); err != nil {
return &ValidationError{Name: "pdfFile", err: fmt.Errorf(`ent: validator failed for field "ProcessFlow.pdfFile": %w`, err)}
}
}
if _, ok := _c.mutation.Status(); !ok {
return &ValidationError{Name: "status", err: errors.New(`ent: missing required field "ProcessFlow.status"`)}
}
if v, ok := _c.mutation.Status(); ok {
if err := processflow.StatusValidator(v); err != nil {
return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "ProcessFlow.status": %w`, err)}
}
}
if _, ok := _c.mutation.Remark(); !ok {
return &ValidationError{Name: "remark", err: errors.New(`ent: missing required field "ProcessFlow.remark"`)}
}
if v, ok := _c.mutation.Remark(); ok {
if err := processflow.RemarkValidator(v); err != nil {
return &ValidationError{Name: "remark", err: fmt.Errorf(`ent: validator failed for field "ProcessFlow.remark": %w`, err)}
}
}
if _, ok := _c.mutation.CreatedAt(); !ok {
return &ValidationError{Name: "createdAt", err: errors.New(`ent: missing required field "ProcessFlow.createdAt"`)}
}
if v, ok := _c.mutation.ID(); ok {
if err := processflow.IDValidator(v); err != nil {
return &ValidationError{Name: "id", err: fmt.Errorf(`ent: validator failed for field "ProcessFlow.id": %w`, err)}
}
}
return nil
}
func (_c *ProcessFlowCreate) sqlSave(ctx context.Context) (*ProcessFlow, error) {
if err := _c.check(); err != nil {
return nil, err
}
_node, _spec := _c.createSpec()
if err := sqlgraph.CreateNode(ctx, _c.driver, _spec); err != nil {
if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return nil, err
}
if _spec.ID.Value != _node.ID {
id := _spec.ID.Value.(int64)
_node.ID = int(id)
}
_c.mutation.id = &_node.ID
_c.mutation.done = true
return _node, nil
}
func (_c *ProcessFlowCreate) createSpec() (*ProcessFlow, *sqlgraph.CreateSpec) {
var (
_node = &ProcessFlow{config: _c.config}
_spec = sqlgraph.NewCreateSpec(processflow.Table, sqlgraph.NewFieldSpec(processflow.FieldID, field.TypeInt))
)
if id, ok := _c.mutation.ID(); ok {
_node.ID = id
_spec.ID.Value = id
}
if value, ok := _c.mutation.Name(); ok {
_spec.SetField(processflow.FieldName, field.TypeString, value)
_node.Name = value
}
if value, ok := _c.mutation.ProcessCode(); ok {
_spec.SetField(processflow.FieldProcessCode, field.TypeInt, value)
_node.ProcessCode = value
}
if value, ok := _c.mutation.PdfFile(); ok {
_spec.SetField(processflow.FieldPdfFile, field.TypeString, value)
_node.PdfFile = value
}
if value, ok := _c.mutation.Status(); ok {
_spec.SetField(processflow.FieldStatus, field.TypeString, value)
_node.Status = value
}
if value, ok := _c.mutation.Remark(); ok {
_spec.SetField(processflow.FieldRemark, field.TypeString, value)
_node.Remark = value
}
if value, ok := _c.mutation.CreatedAt(); ok {
_spec.SetField(processflow.FieldCreatedAt, field.TypeTime, value)
_node.CreatedAt = value
}
if value, ok := _c.mutation.UpdatedAt(); ok {
_spec.SetField(processflow.FieldUpdatedAt, field.TypeTime, value)
_node.UpdatedAt = &value
}
return _node, _spec
}
// ProcessFlowCreateBulk is the builder for creating many ProcessFlow entities in bulk.
type ProcessFlowCreateBulk struct {
config
err error
builders []*ProcessFlowCreate
}
// Save creates the ProcessFlow entities in the database.
func (_c *ProcessFlowCreateBulk) Save(ctx context.Context) ([]*ProcessFlow, error) {
if _c.err != nil {
return nil, _c.err
}
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
nodes := make([]*ProcessFlow, len(_c.builders))
mutators := make([]Mutator, len(_c.builders))
for i := range _c.builders {
func(i int, root context.Context) {
builder := _c.builders[i]
builder.defaults()
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*ProcessFlowMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
if err := builder.check(); err != nil {
return nil, err
}
builder.mutation = mutation
var err error
nodes[i], specs[i] = builder.createSpec()
if i < len(mutators)-1 {
_, err = mutators[i+1].Mutate(root, _c.builders[i+1].mutation)
} else {
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
// Invoke the actual operation on the latest mutation in the chain.
if err = sqlgraph.BatchCreate(ctx, _c.driver, spec); err != nil {
if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
}
}
if err != nil {
return nil, err
}
mutation.id = &nodes[i].ID
if specs[i].ID.Value != nil && nodes[i].ID == 0 {
id := specs[i].ID.Value.(int64)
nodes[i].ID = int(id)
}
mutation.done = true
return nodes[i], nil
})
for i := len(builder.hooks) - 1; i >= 0; i-- {
mut = builder.hooks[i](mut)
}
mutators[i] = mut
}(i, ctx)
}
if len(mutators) > 0 {
if _, err := mutators[0].Mutate(ctx, _c.builders[0].mutation); err != nil {
return nil, err
}
}
return nodes, nil
}
// SaveX is like Save, but panics if an error occurs.
func (_c *ProcessFlowCreateBulk) SaveX(ctx context.Context) []*ProcessFlow {
v, err := _c.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// Exec executes the query.
func (_c *ProcessFlowCreateBulk) Exec(ctx context.Context) error {
_, err := _c.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (_c *ProcessFlowCreateBulk) ExecX(ctx context.Context) {
if err := _c.Exec(ctx); err != nil {
panic(err)
}
}