// Code generated by ent, DO NOT EDIT. package ent import ( "bj_power_mes/ent/attachment" "context" "errors" "fmt" "time" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" ) // AttachmentCreate is the builder for creating a Attachment entity. type AttachmentCreate struct { config mutation *AttachmentMutation hooks []Hook } // SetBizType sets the "bizType" field. func (_c *AttachmentCreate) SetBizType(v string) *AttachmentCreate { _c.mutation.SetBizType(v) return _c } // SetBizId sets the "bizId" field. func (_c *AttachmentCreate) SetBizId(v string) *AttachmentCreate { _c.mutation.SetBizId(v) return _c } // SetFileName sets the "fileName" field. func (_c *AttachmentCreate) SetFileName(v string) *AttachmentCreate { _c.mutation.SetFileName(v) return _c } // SetFilePath sets the "filePath" field. func (_c *AttachmentCreate) SetFilePath(v string) *AttachmentCreate { _c.mutation.SetFilePath(v) return _c } // SetFileSize sets the "fileSize" field. func (_c *AttachmentCreate) SetFileSize(v int) *AttachmentCreate { _c.mutation.SetFileSize(v) return _c } // SetNillableFileSize sets the "fileSize" field if the given value is not nil. func (_c *AttachmentCreate) SetNillableFileSize(v *int) *AttachmentCreate { if v != nil { _c.SetFileSize(*v) } return _c } // SetUploader sets the "uploader" field. func (_c *AttachmentCreate) SetUploader(v string) *AttachmentCreate { _c.mutation.SetUploader(v) return _c } // SetNillableUploader sets the "uploader" field if the given value is not nil. func (_c *AttachmentCreate) SetNillableUploader(v *string) *AttachmentCreate { if v != nil { _c.SetUploader(*v) } return _c } // SetCreatedAt sets the "createdAt" field. func (_c *AttachmentCreate) SetCreatedAt(v time.Time) *AttachmentCreate { _c.mutation.SetCreatedAt(v) return _c } // SetNillableCreatedAt sets the "createdAt" field if the given value is not nil. func (_c *AttachmentCreate) SetNillableCreatedAt(v *time.Time) *AttachmentCreate { if v != nil { _c.SetCreatedAt(*v) } return _c } // SetID sets the "id" field. func (_c *AttachmentCreate) SetID(v int) *AttachmentCreate { _c.mutation.SetID(v) return _c } // Mutation returns the AttachmentMutation object of the builder. func (_c *AttachmentCreate) Mutation() *AttachmentMutation { return _c.mutation } // Save creates the Attachment in the database. func (_c *AttachmentCreate) Save(ctx context.Context) (*Attachment, error) { _c.defaults() return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks) } // SaveX calls Save and panics if Save returns an error. func (_c *AttachmentCreate) SaveX(ctx context.Context) *Attachment { v, err := _c.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (_c *AttachmentCreate) Exec(ctx context.Context) error { _, err := _c.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_c *AttachmentCreate) 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 *AttachmentCreate) defaults() { if _, ok := _c.mutation.FileSize(); !ok { v := attachment.DefaultFileSize _c.mutation.SetFileSize(v) } if _, ok := _c.mutation.Uploader(); !ok { v := attachment.DefaultUploader _c.mutation.SetUploader(v) } if _, ok := _c.mutation.CreatedAt(); !ok { v := attachment.DefaultCreatedAt() _c.mutation.SetCreatedAt(v) } } // check runs all checks and user-defined validators on the builder. func (_c *AttachmentCreate) check() error { if _, ok := _c.mutation.BizType(); !ok { return &ValidationError{Name: "bizType", err: errors.New(`ent: missing required field "Attachment.bizType"`)} } if v, ok := _c.mutation.BizType(); ok { if err := attachment.BizTypeValidator(v); err != nil { return &ValidationError{Name: "bizType", err: fmt.Errorf(`ent: validator failed for field "Attachment.bizType": %w`, err)} } } if _, ok := _c.mutation.BizId(); !ok { return &ValidationError{Name: "bizId", err: errors.New(`ent: missing required field "Attachment.bizId"`)} } if v, ok := _c.mutation.BizId(); ok { if err := attachment.BizIdValidator(v); err != nil { return &ValidationError{Name: "bizId", err: fmt.Errorf(`ent: validator failed for field "Attachment.bizId": %w`, err)} } } if _, ok := _c.mutation.FileName(); !ok { return &ValidationError{Name: "fileName", err: errors.New(`ent: missing required field "Attachment.fileName"`)} } if v, ok := _c.mutation.FileName(); ok { if err := attachment.FileNameValidator(v); err != nil { return &ValidationError{Name: "fileName", err: fmt.Errorf(`ent: validator failed for field "Attachment.fileName": %w`, err)} } } if _, ok := _c.mutation.FilePath(); !ok { return &ValidationError{Name: "filePath", err: errors.New(`ent: missing required field "Attachment.filePath"`)} } if v, ok := _c.mutation.FilePath(); ok { if err := attachment.FilePathValidator(v); err != nil { return &ValidationError{Name: "filePath", err: fmt.Errorf(`ent: validator failed for field "Attachment.filePath": %w`, err)} } } if _, ok := _c.mutation.FileSize(); !ok { return &ValidationError{Name: "fileSize", err: errors.New(`ent: missing required field "Attachment.fileSize"`)} } if _, ok := _c.mutation.Uploader(); !ok { return &ValidationError{Name: "uploader", err: errors.New(`ent: missing required field "Attachment.uploader"`)} } if v, ok := _c.mutation.Uploader(); ok { if err := attachment.UploaderValidator(v); err != nil { return &ValidationError{Name: "uploader", err: fmt.Errorf(`ent: validator failed for field "Attachment.uploader": %w`, err)} } } if _, ok := _c.mutation.CreatedAt(); !ok { return &ValidationError{Name: "createdAt", err: errors.New(`ent: missing required field "Attachment.createdAt"`)} } if v, ok := _c.mutation.ID(); ok { if err := attachment.IDValidator(v); err != nil { return &ValidationError{Name: "id", err: fmt.Errorf(`ent: validator failed for field "Attachment.id": %w`, err)} } } return nil } func (_c *AttachmentCreate) sqlSave(ctx context.Context) (*Attachment, 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 *AttachmentCreate) createSpec() (*Attachment, *sqlgraph.CreateSpec) { var ( _node = &Attachment{config: _c.config} _spec = sqlgraph.NewCreateSpec(attachment.Table, sqlgraph.NewFieldSpec(attachment.FieldID, field.TypeInt)) ) if id, ok := _c.mutation.ID(); ok { _node.ID = id _spec.ID.Value = id } if value, ok := _c.mutation.BizType(); ok { _spec.SetField(attachment.FieldBizType, field.TypeString, value) _node.BizType = value } if value, ok := _c.mutation.BizId(); ok { _spec.SetField(attachment.FieldBizId, field.TypeString, value) _node.BizId = value } if value, ok := _c.mutation.FileName(); ok { _spec.SetField(attachment.FieldFileName, field.TypeString, value) _node.FileName = value } if value, ok := _c.mutation.FilePath(); ok { _spec.SetField(attachment.FieldFilePath, field.TypeString, value) _node.FilePath = value } if value, ok := _c.mutation.FileSize(); ok { _spec.SetField(attachment.FieldFileSize, field.TypeInt, value) _node.FileSize = value } if value, ok := _c.mutation.Uploader(); ok { _spec.SetField(attachment.FieldUploader, field.TypeString, value) _node.Uploader = value } if value, ok := _c.mutation.CreatedAt(); ok { _spec.SetField(attachment.FieldCreatedAt, field.TypeTime, value) _node.CreatedAt = value } return _node, _spec } // AttachmentCreateBulk is the builder for creating many Attachment entities in bulk. type AttachmentCreateBulk struct { config err error builders []*AttachmentCreate } // Save creates the Attachment entities in the database. func (_c *AttachmentCreateBulk) Save(ctx context.Context) ([]*Attachment, error) { if _c.err != nil { return nil, _c.err } specs := make([]*sqlgraph.CreateSpec, len(_c.builders)) nodes := make([]*Attachment, 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.(*AttachmentMutation) 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 *AttachmentCreateBulk) SaveX(ctx context.Context) []*Attachment { v, err := _c.Save(ctx) if err != nil { panic(err) } return v } // Exec executes the query. func (_c *AttachmentCreateBulk) Exec(ctx context.Context) error { _, err := _c.Save(ctx) return err } // ExecX is like Exec, but panics if an error occurs. func (_c *AttachmentCreateBulk) ExecX(ctx context.Context) { if err := _c.Exec(ctx); err != nil { panic(err) } }