Files
bj_power/bj_power_mes/ent/userstation_create.go
T

246 lines
6.7 KiB
Go
Raw Normal View History

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