346 lines
9.8 KiB
Go
346 lines
9.8 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|||
|
|
|
||
|
|
package ent
|
||
|
|
|
||
|
|
import (
|
||
|
|
"bj_power_mes/ent/routesegment"
|
||
|
|
"context"
|
||
|
|
"errors"
|
||
|
|
"fmt"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
||
|
|
"entgo.io/ent/schema/field"
|
||
|
|
)
|
||
|
|
|
||
|
|
// RouteSegmentCreate is the builder for creating a RouteSegment entity.
|
||
|
|
type RouteSegmentCreate struct {
|
||
|
|
config
|
||
|
|
mutation *RouteSegmentMutation
|
||
|
|
hooks []Hook
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetRouteId sets the "routeId" field.
|
||
|
|
func (_c *RouteSegmentCreate) SetRouteId(v int) *RouteSegmentCreate {
|
||
|
|
_c.mutation.SetRouteId(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetSeq sets the "seq" field.
|
||
|
|
func (_c *RouteSegmentCreate) SetSeq(v int) *RouteSegmentCreate {
|
||
|
|
_c.mutation.SetSeq(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableSeq sets the "seq" field if the given value is not nil.
|
||
|
|
func (_c *RouteSegmentCreate) SetNillableSeq(v *int) *RouteSegmentCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetSeq(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetFlowId sets the "flowId" field.
|
||
|
|
func (_c *RouteSegmentCreate) SetFlowId(v int) *RouteSegmentCreate {
|
||
|
|
_c.mutation.SetFlowId(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableFlowId sets the "flowId" field if the given value is not nil.
|
||
|
|
func (_c *RouteSegmentCreate) SetNillableFlowId(v *int) *RouteSegmentCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetFlowId(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetStations sets the "stations" field.
|
||
|
|
func (_c *RouteSegmentCreate) SetStations(v []int) *RouteSegmentCreate {
|
||
|
|
_c.mutation.SetStations(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetSegmentType sets the "segmentType" field.
|
||
|
|
func (_c *RouteSegmentCreate) SetSegmentType(v string) *RouteSegmentCreate {
|
||
|
|
_c.mutation.SetSegmentType(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableSegmentType sets the "segmentType" field if the given value is not nil.
|
||
|
|
func (_c *RouteSegmentCreate) SetNillableSegmentType(v *string) *RouteSegmentCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetSegmentType(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetRemark sets the "remark" field.
|
||
|
|
func (_c *RouteSegmentCreate) SetRemark(v string) *RouteSegmentCreate {
|
||
|
|
_c.mutation.SetRemark(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableRemark sets the "remark" field if the given value is not nil.
|
||
|
|
func (_c *RouteSegmentCreate) SetNillableRemark(v *string) *RouteSegmentCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetRemark(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetCreatedAt sets the "createdAt" field.
|
||
|
|
func (_c *RouteSegmentCreate) SetCreatedAt(v time.Time) *RouteSegmentCreate {
|
||
|
|
_c.mutation.SetCreatedAt(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableCreatedAt sets the "createdAt" field if the given value is not nil.
|
||
|
|
func (_c *RouteSegmentCreate) SetNillableCreatedAt(v *time.Time) *RouteSegmentCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetCreatedAt(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetID sets the "id" field.
|
||
|
|
func (_c *RouteSegmentCreate) SetID(v int) *RouteSegmentCreate {
|
||
|
|
_c.mutation.SetID(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// Mutation returns the RouteSegmentMutation object of the builder.
|
||
|
|
func (_c *RouteSegmentCreate) Mutation() *RouteSegmentMutation {
|
||
|
|
return _c.mutation
|
||
|
|
}
|
||
|
|
|
||
|
|
// Save creates the RouteSegment in the database.
|
||
|
|
func (_c *RouteSegmentCreate) Save(ctx context.Context) (*RouteSegment, error) {
|
||
|
|
_c.defaults()
|
||
|
|
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
|
||
|
|
}
|
||
|
|
|
||
|
|
// SaveX calls Save and panics if Save returns an error.
|
||
|
|
func (_c *RouteSegmentCreate) SaveX(ctx context.Context) *RouteSegment {
|
||
|
|
v, err := _c.Save(ctx)
|
||
|
|
if err != nil {
|
||
|
|
panic(err)
|
||
|
|
}
|
||
|
|
return v
|
||
|
|
}
|
||
|
|
|
||
|
|
// Exec executes the query.
|
||
|
|
func (_c *RouteSegmentCreate) Exec(ctx context.Context) error {
|
||
|
|
_, err := _c.Save(ctx)
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
// ExecX is like Exec, but panics if an error occurs.
|
||
|
|
func (_c *RouteSegmentCreate) 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 *RouteSegmentCreate) defaults() {
|
||
|
|
if _, ok := _c.mutation.Seq(); !ok {
|
||
|
|
v := routesegment.DefaultSeq
|
||
|
|
_c.mutation.SetSeq(v)
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.SegmentType(); !ok {
|
||
|
|
v := routesegment.DefaultSegmentType
|
||
|
|
_c.mutation.SetSegmentType(v)
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.Remark(); !ok {
|
||
|
|
v := routesegment.DefaultRemark
|
||
|
|
_c.mutation.SetRemark(v)
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.CreatedAt(); !ok {
|
||
|
|
v := routesegment.DefaultCreatedAt()
|
||
|
|
_c.mutation.SetCreatedAt(v)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// check runs all checks and user-defined validators on the builder.
|
||
|
|
func (_c *RouteSegmentCreate) check() error {
|
||
|
|
if _, ok := _c.mutation.RouteId(); !ok {
|
||
|
|
return &ValidationError{Name: "routeId", err: errors.New(`ent: missing required field "RouteSegment.routeId"`)}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.Seq(); !ok {
|
||
|
|
return &ValidationError{Name: "seq", err: errors.New(`ent: missing required field "RouteSegment.seq"`)}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.SegmentType(); !ok {
|
||
|
|
return &ValidationError{Name: "segmentType", err: errors.New(`ent: missing required field "RouteSegment.segmentType"`)}
|
||
|
|
}
|
||
|
|
if v, ok := _c.mutation.SegmentType(); ok {
|
||
|
|
if err := routesegment.SegmentTypeValidator(v); err != nil {
|
||
|
|
return &ValidationError{Name: "segmentType", err: fmt.Errorf(`ent: validator failed for field "RouteSegment.segmentType": %w`, err)}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.Remark(); !ok {
|
||
|
|
return &ValidationError{Name: "remark", err: errors.New(`ent: missing required field "RouteSegment.remark"`)}
|
||
|
|
}
|
||
|
|
if v, ok := _c.mutation.Remark(); ok {
|
||
|
|
if err := routesegment.RemarkValidator(v); err != nil {
|
||
|
|
return &ValidationError{Name: "remark", err: fmt.Errorf(`ent: validator failed for field "RouteSegment.remark": %w`, err)}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.CreatedAt(); !ok {
|
||
|
|
return &ValidationError{Name: "createdAt", err: errors.New(`ent: missing required field "RouteSegment.createdAt"`)}
|
||
|
|
}
|
||
|
|
if v, ok := _c.mutation.ID(); ok {
|
||
|
|
if err := routesegment.IDValidator(v); err != nil {
|
||
|
|
return &ValidationError{Name: "id", err: fmt.Errorf(`ent: validator failed for field "RouteSegment.id": %w`, err)}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (_c *RouteSegmentCreate) sqlSave(ctx context.Context) (*RouteSegment, 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 *RouteSegmentCreate) createSpec() (*RouteSegment, *sqlgraph.CreateSpec) {
|
||
|
|
var (
|
||
|
|
_node = &RouteSegment{config: _c.config}
|
||
|
|
_spec = sqlgraph.NewCreateSpec(routesegment.Table, sqlgraph.NewFieldSpec(routesegment.FieldID, field.TypeInt))
|
||
|
|
)
|
||
|
|
if id, ok := _c.mutation.ID(); ok {
|
||
|
|
_node.ID = id
|
||
|
|
_spec.ID.Value = id
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.RouteId(); ok {
|
||
|
|
_spec.SetField(routesegment.FieldRouteId, field.TypeInt, value)
|
||
|
|
_node.RouteId = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.Seq(); ok {
|
||
|
|
_spec.SetField(routesegment.FieldSeq, field.TypeInt, value)
|
||
|
|
_node.Seq = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.FlowId(); ok {
|
||
|
|
_spec.SetField(routesegment.FieldFlowId, field.TypeInt, value)
|
||
|
|
_node.FlowId = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.Stations(); ok {
|
||
|
|
_spec.SetField(routesegment.FieldStations, field.TypeJSON, value)
|
||
|
|
_node.Stations = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.SegmentType(); ok {
|
||
|
|
_spec.SetField(routesegment.FieldSegmentType, field.TypeString, value)
|
||
|
|
_node.SegmentType = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.Remark(); ok {
|
||
|
|
_spec.SetField(routesegment.FieldRemark, field.TypeString, value)
|
||
|
|
_node.Remark = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.CreatedAt(); ok {
|
||
|
|
_spec.SetField(routesegment.FieldCreatedAt, field.TypeTime, value)
|
||
|
|
_node.CreatedAt = value
|
||
|
|
}
|
||
|
|
return _node, _spec
|
||
|
|
}
|
||
|
|
|
||
|
|
// RouteSegmentCreateBulk is the builder for creating many RouteSegment entities in bulk.
|
||
|
|
type RouteSegmentCreateBulk struct {
|
||
|
|
config
|
||
|
|
err error
|
||
|
|
builders []*RouteSegmentCreate
|
||
|
|
}
|
||
|
|
|
||
|
|
// Save creates the RouteSegment entities in the database.
|
||
|
|
func (_c *RouteSegmentCreateBulk) Save(ctx context.Context) ([]*RouteSegment, error) {
|
||
|
|
if _c.err != nil {
|
||
|
|
return nil, _c.err
|
||
|
|
}
|
||
|
|
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
|
||
|
|
nodes := make([]*RouteSegment, 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.(*RouteSegmentMutation)
|
||
|
|
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 *RouteSegmentCreateBulk) SaveX(ctx context.Context) []*RouteSegment {
|
||
|
|
v, err := _c.Save(ctx)
|
||
|
|
if err != nil {
|
||
|
|
panic(err)
|
||
|
|
}
|
||
|
|
return v
|
||
|
|
}
|
||
|
|
|
||
|
|
// Exec executes the query.
|
||
|
|
func (_c *RouteSegmentCreateBulk) Exec(ctx context.Context) error {
|
||
|
|
_, err := _c.Save(ctx)
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
// ExecX is like Exec, but panics if an error occurs.
|
||
|
|
func (_c *RouteSegmentCreateBulk) ExecX(ctx context.Context) {
|
||
|
|
if err := _c.Exec(ctx); err != nil {
|
||
|
|
panic(err)
|
||
|
|
}
|
||
|
|
}
|