// Code generated by ent, DO NOT EDIT. package ent import ( "bj_power_mes/ent/station" "context" "errors" "fmt" "time" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" ) // StationCreate is the builder for creating a Station entity. type StationCreate struct { config mutation *StationMutation hooks []Hook } // SetStationNo sets the "stationNo" field. func (_c *StationCreate) SetStationNo(v int) *StationCreate { _c.mutation.SetStationNo(v) return _c } // SetName sets the "name" field. func (_c *StationCreate) SetName(v string) *StationCreate { _c.mutation.SetName(v) return _c } // SetNillableName sets the "name" field if the given value is not nil. func (_c *StationCreate) SetNillableName(v *string) *StationCreate { if v != nil { _c.SetName(*v) } return _c } // SetFlowId sets the "flowId" field. func (_c *StationCreate) SetFlowId(v int) *StationCreate { _c.mutation.SetFlowId(v) return _c } // SetNillableFlowId sets the "flowId" field if the given value is not nil. func (_c *StationCreate) SetNillableFlowId(v *int) *StationCreate { if v != nil { _c.SetFlowId(*v) } return _c } // SetStatus sets the "status" field. func (_c *StationCreate) SetStatus(v string) *StationCreate { _c.mutation.SetStatus(v) return _c } // SetNillableStatus sets the "status" field if the given value is not nil. func (_c *StationCreate) SetNillableStatus(v *string) *StationCreate { if v != nil { _c.SetStatus(*v) } return _c } // SetCreatedAt sets the "createdAt" field. func (_c *StationCreate) SetCreatedAt(v time.Time) *StationCreate { _c.mutation.SetCreatedAt(v) return _c } // SetNillableCreatedAt sets the "createdAt" field if the given value is not nil. func (_c *StationCreate) SetNillableCreatedAt(v *time.Time) *StationCreate { if v != nil { _c.SetCreatedAt(*v) } return _c } // SetID sets the "id" field. func (_c *StationCreate) SetID(v int) *StationCreate { _c.mutation.SetID(v) return _c } // Mutation returns the StationMutation object of the builder. func (_c *StationCreate) Mutation() *StationMutation { return _c.mutation } // Save creates the Station in the database. func (_c *StationCreate) Save(ctx context.Context) (*Station, error) { _c.defaults() return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks) } // SaveX calls Save and panics if Save returns an error. func (_c *StationCreate) SaveX(ctx context.Context) *Station { v, err := _c.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (_c *StationCreate) Exec(ctx context.Context) error { _, err := _c.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_c *StationCreate) 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 *StationCreate) defaults() { if _, ok := _c.mutation.Name(); !ok { v := station.DefaultName _c.mutation.SetName(v) } if _, ok := _c.mutation.Status(); !ok { v := station.DefaultStatus _c.mutation.SetStatus(v) } if _, ok := _c.mutation.CreatedAt(); !ok { v := station.DefaultCreatedAt() _c.mutation.SetCreatedAt(v) } } // check runs all checks and user-defined validators on the builder. func (_c *StationCreate) check() error { if _, ok := _c.mutation.StationNo(); !ok { return &ValidationError{Name: "stationNo", err: errors.New(`ent: missing required field "Station.stationNo"`)} } if _, ok := _c.mutation.Name(); !ok { return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "Station.name"`)} } if v, ok := _c.mutation.Name(); ok { if err := station.NameValidator(v); err != nil { return &ValidationError{Name: "name", err: fmt.Errorf(`ent: validator failed for field "Station.name": %w`, err)} } } if _, ok := _c.mutation.Status(); !ok { return &ValidationError{Name: "status", err: errors.New(`ent: missing required field "Station.status"`)} } if v, ok := _c.mutation.Status(); ok { if err := station.StatusValidator(v); err != nil { return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "Station.status": %w`, err)} } } if _, ok := _c.mutation.CreatedAt(); !ok { return &ValidationError{Name: "createdAt", err: errors.New(`ent: missing required field "Station.createdAt"`)} } if v, ok := _c.mutation.ID(); ok { if err := station.IDValidator(v); err != nil { return &ValidationError{Name: "id", err: fmt.Errorf(`ent: validator failed for field "Station.id": %w`, err)} } } return nil } func (_c *StationCreate) sqlSave(ctx context.Context) (*Station, 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 *StationCreate) createSpec() (*Station, *sqlgraph.CreateSpec) { var ( _node = &Station{config: _c.config} _spec = sqlgraph.NewCreateSpec(station.Table, sqlgraph.NewFieldSpec(station.FieldID, field.TypeInt)) ) if id, ok := _c.mutation.ID(); ok { _node.ID = id _spec.ID.Value = id } if value, ok := _c.mutation.StationNo(); ok { _spec.SetField(station.FieldStationNo, field.TypeInt, value) _node.StationNo = value } if value, ok := _c.mutation.Name(); ok { _spec.SetField(station.FieldName, field.TypeString, value) _node.Name = value } if value, ok := _c.mutation.FlowId(); ok { _spec.SetField(station.FieldFlowId, field.TypeInt, value) _node.FlowId = value } if value, ok := _c.mutation.Status(); ok { _spec.SetField(station.FieldStatus, field.TypeString, value) _node.Status = value } if value, ok := _c.mutation.CreatedAt(); ok { _spec.SetField(station.FieldCreatedAt, field.TypeTime, value) _node.CreatedAt = value } return _node, _spec } // StationCreateBulk is the builder for creating many Station entities in bulk. type StationCreateBulk struct { config err error builders []*StationCreate } // Save creates the Station entities in the database. func (_c *StationCreateBulk) Save(ctx context.Context) ([]*Station, error) { if _c.err != nil { return nil, _c.err } specs := make([]*sqlgraph.CreateSpec, len(_c.builders)) nodes := make([]*Station, 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.(*StationMutation) 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 *StationCreateBulk) SaveX(ctx context.Context) []*Station { v, err := _c.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (_c *StationCreateBulk) Exec(ctx context.Context) error { _, err := _c.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_c *StationCreateBulk) ExecX(ctx context.Context) { if err := _c.Exec(ctx); err != nil { panic(err) } }