2026-08-28 15:06:01 +08:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
package ent
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bj_power_mes/ent/user"
|
|
|
|
|
"context"
|
|
|
|
|
"errors"
|
|
|
|
|
"fmt"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
|
"entgo.io/ent/schema/field"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// UserCreate is the builder for creating a User entity.
|
|
|
|
|
type UserCreate struct {
|
|
|
|
|
config
|
|
|
|
|
mutation *UserMutation
|
|
|
|
|
hooks []Hook
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetUsername sets the "username" field.
|
|
|
|
|
func (_c *UserCreate) SetUsername(v string) *UserCreate {
|
|
|
|
|
_c.mutation.SetUsername(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetPassword sets the "password" field.
|
|
|
|
|
func (_c *UserCreate) SetPassword(v string) *UserCreate {
|
|
|
|
|
_c.mutation.SetPassword(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetName sets the "name" field.
|
|
|
|
|
func (_c *UserCreate) SetName(v string) *UserCreate {
|
|
|
|
|
_c.mutation.SetName(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
|
|
|
func (_c *UserCreate) SetNillableName(v *string) *UserCreate {
|
|
|
|
|
if v != nil {
|
|
|
|
|
_c.SetName(*v)
|
|
|
|
|
}
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetRoleId sets the "roleId" field.
|
|
|
|
|
func (_c *UserCreate) SetRoleId(v int) *UserCreate {
|
|
|
|
|
_c.mutation.SetRoleId(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableRoleId sets the "roleId" field if the given value is not nil.
|
|
|
|
|
func (_c *UserCreate) SetNillableRoleId(v *int) *UserCreate {
|
|
|
|
|
if v != nil {
|
|
|
|
|
_c.SetRoleId(*v)
|
|
|
|
|
}
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-31 08:06:55 +08:00
|
|
|
// SetCanLoginWorkstation sets the "canLoginWorkstation" field.
|
|
|
|
|
func (_c *UserCreate) SetCanLoginWorkstation(v bool) *UserCreate {
|
|
|
|
|
_c.mutation.SetCanLoginWorkstation(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableCanLoginWorkstation sets the "canLoginWorkstation" field if the given value is not nil.
|
|
|
|
|
func (_c *UserCreate) SetNillableCanLoginWorkstation(v *bool) *UserCreate {
|
|
|
|
|
if v != nil {
|
|
|
|
|
_c.SetCanLoginWorkstation(*v)
|
|
|
|
|
}
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetWorkstationPassword sets the "workstationPassword" field.
|
|
|
|
|
func (_c *UserCreate) SetWorkstationPassword(v string) *UserCreate {
|
|
|
|
|
_c.mutation.SetWorkstationPassword(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableWorkstationPassword sets the "workstationPassword" field if the given value is not nil.
|
|
|
|
|
func (_c *UserCreate) SetNillableWorkstationPassword(v *string) *UserCreate {
|
|
|
|
|
if v != nil {
|
|
|
|
|
_c.SetWorkstationPassword(*v)
|
|
|
|
|
}
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-28 15:06:01 +08:00
|
|
|
// SetStatus sets the "status" field.
|
|
|
|
|
func (_c *UserCreate) SetStatus(v string) *UserCreate {
|
|
|
|
|
_c.mutation.SetStatus(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableStatus sets the "status" field if the given value is not nil.
|
|
|
|
|
func (_c *UserCreate) SetNillableStatus(v *string) *UserCreate {
|
|
|
|
|
if v != nil {
|
|
|
|
|
_c.SetStatus(*v)
|
|
|
|
|
}
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
2026-09-08 11:44:04 +08:00
|
|
|
// SetLastLoginAt sets the "lastLoginAt" field.
|
|
|
|
|
func (_c *UserCreate) SetLastLoginAt(v int64) *UserCreate {
|
|
|
|
|
_c.mutation.SetLastLoginAt(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableLastLoginAt sets the "lastLoginAt" field if the given value is not nil.
|
|
|
|
|
func (_c *UserCreate) SetNillableLastLoginAt(v *int64) *UserCreate {
|
|
|
|
|
if v != nil {
|
|
|
|
|
_c.SetLastLoginAt(*v)
|
|
|
|
|
}
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-28 15:06:01 +08:00
|
|
|
// SetCreatedAt sets the "createdAt" field.
|
|
|
|
|
func (_c *UserCreate) SetCreatedAt(v time.Time) *UserCreate {
|
|
|
|
|
_c.mutation.SetCreatedAt(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableCreatedAt sets the "createdAt" field if the given value is not nil.
|
|
|
|
|
func (_c *UserCreate) SetNillableCreatedAt(v *time.Time) *UserCreate {
|
|
|
|
|
if v != nil {
|
|
|
|
|
_c.SetCreatedAt(*v)
|
|
|
|
|
}
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetUpdatedAt sets the "updatedAt" field.
|
|
|
|
|
func (_c *UserCreate) SetUpdatedAt(v time.Time) *UserCreate {
|
|
|
|
|
_c.mutation.SetUpdatedAt(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableUpdatedAt sets the "updatedAt" field if the given value is not nil.
|
|
|
|
|
func (_c *UserCreate) SetNillableUpdatedAt(v *time.Time) *UserCreate {
|
|
|
|
|
if v != nil {
|
|
|
|
|
_c.SetUpdatedAt(*v)
|
|
|
|
|
}
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetID sets the "id" field.
|
|
|
|
|
func (_c *UserCreate) SetID(v int) *UserCreate {
|
|
|
|
|
_c.mutation.SetID(v)
|
|
|
|
|
return _c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Mutation returns the UserMutation object of the builder.
|
|
|
|
|
func (_c *UserCreate) Mutation() *UserMutation {
|
|
|
|
|
return _c.mutation
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Save creates the User in the database.
|
|
|
|
|
func (_c *UserCreate) Save(ctx context.Context) (*User, error) {
|
|
|
|
|
_c.defaults()
|
|
|
|
|
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
|
|
|
func (_c *UserCreate) SaveX(ctx context.Context) *User {
|
|
|
|
|
v, err := _c.Save(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Exec executes the query.
|
|
|
|
|
func (_c *UserCreate) Exec(ctx context.Context) error {
|
|
|
|
|
_, err := _c.Save(ctx)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
|
func (_c *UserCreate) 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 *UserCreate) defaults() {
|
|
|
|
|
if _, ok := _c.mutation.Name(); !ok {
|
|
|
|
|
v := user.DefaultName
|
|
|
|
|
_c.mutation.SetName(v)
|
|
|
|
|
}
|
2026-08-31 08:06:55 +08:00
|
|
|
if _, ok := _c.mutation.CanLoginWorkstation(); !ok {
|
|
|
|
|
v := user.DefaultCanLoginWorkstation
|
|
|
|
|
_c.mutation.SetCanLoginWorkstation(v)
|
|
|
|
|
}
|
2026-08-28 15:06:01 +08:00
|
|
|
if _, ok := _c.mutation.Status(); !ok {
|
|
|
|
|
v := user.DefaultStatus
|
|
|
|
|
_c.mutation.SetStatus(v)
|
|
|
|
|
}
|
|
|
|
|
if _, ok := _c.mutation.CreatedAt(); !ok {
|
|
|
|
|
v := user.DefaultCreatedAt()
|
|
|
|
|
_c.mutation.SetCreatedAt(v)
|
|
|
|
|
}
|
|
|
|
|
if _, ok := _c.mutation.UpdatedAt(); !ok {
|
|
|
|
|
v := user.DefaultUpdatedAt()
|
|
|
|
|
_c.mutation.SetUpdatedAt(v)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
|
|
|
func (_c *UserCreate) check() error {
|
|
|
|
|
if _, ok := _c.mutation.Username(); !ok {
|
|
|
|
|
return &ValidationError{Name: "username", err: errors.New(`ent: missing required field "User.username"`)}
|
|
|
|
|
}
|
|
|
|
|
if v, ok := _c.mutation.Username(); ok {
|
|
|
|
|
if err := user.UsernameValidator(v); err != nil {
|
|
|
|
|
return &ValidationError{Name: "username", err: fmt.Errorf(`ent: validator failed for field "User.username": %w`, err)}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if _, ok := _c.mutation.Password(); !ok {
|
|
|
|
|
return &ValidationError{Name: "password", err: errors.New(`ent: missing required field "User.password"`)}
|
|
|
|
|
}
|
|
|
|
|
if v, ok := _c.mutation.Password(); ok {
|
|
|
|
|
if err := user.PasswordValidator(v); err != nil {
|
|
|
|
|
return &ValidationError{Name: "password", err: fmt.Errorf(`ent: validator failed for field "User.password": %w`, err)}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if _, ok := _c.mutation.Name(); !ok {
|
|
|
|
|
return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "User.name"`)}
|
|
|
|
|
}
|
|
|
|
|
if v, ok := _c.mutation.Name(); ok {
|
|
|
|
|
if err := user.NameValidator(v); err != nil {
|
|
|
|
|
return &ValidationError{Name: "name", err: fmt.Errorf(`ent: validator failed for field "User.name": %w`, err)}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-08-31 08:06:55 +08:00
|
|
|
if _, ok := _c.mutation.CanLoginWorkstation(); !ok {
|
|
|
|
|
return &ValidationError{Name: "canLoginWorkstation", err: errors.New(`ent: missing required field "User.canLoginWorkstation"`)}
|
|
|
|
|
}
|
|
|
|
|
if v, ok := _c.mutation.WorkstationPassword(); ok {
|
|
|
|
|
if err := user.WorkstationPasswordValidator(v); err != nil {
|
|
|
|
|
return &ValidationError{Name: "workstationPassword", err: fmt.Errorf(`ent: validator failed for field "User.workstationPassword": %w`, err)}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-08-28 15:06:01 +08:00
|
|
|
if _, ok := _c.mutation.Status(); !ok {
|
|
|
|
|
return &ValidationError{Name: "status", err: errors.New(`ent: missing required field "User.status"`)}
|
|
|
|
|
}
|
|
|
|
|
if v, ok := _c.mutation.Status(); ok {
|
|
|
|
|
if err := user.StatusValidator(v); err != nil {
|
|
|
|
|
return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "User.status": %w`, err)}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if _, ok := _c.mutation.CreatedAt(); !ok {
|
|
|
|
|
return &ValidationError{Name: "createdAt", err: errors.New(`ent: missing required field "User.createdAt"`)}
|
|
|
|
|
}
|
|
|
|
|
if v, ok := _c.mutation.ID(); ok {
|
|
|
|
|
if err := user.IDValidator(v); err != nil {
|
|
|
|
|
return &ValidationError{Name: "id", err: fmt.Errorf(`ent: validator failed for field "User.id": %w`, err)}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (_c *UserCreate) sqlSave(ctx context.Context) (*User, 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 *UserCreate) createSpec() (*User, *sqlgraph.CreateSpec) {
|
|
|
|
|
var (
|
|
|
|
|
_node = &User{config: _c.config}
|
|
|
|
|
_spec = sqlgraph.NewCreateSpec(user.Table, sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt))
|
|
|
|
|
)
|
|
|
|
|
if id, ok := _c.mutation.ID(); ok {
|
|
|
|
|
_node.ID = id
|
|
|
|
|
_spec.ID.Value = id
|
|
|
|
|
}
|
|
|
|
|
if value, ok := _c.mutation.Username(); ok {
|
|
|
|
|
_spec.SetField(user.FieldUsername, field.TypeString, value)
|
|
|
|
|
_node.Username = value
|
|
|
|
|
}
|
|
|
|
|
if value, ok := _c.mutation.Password(); ok {
|
|
|
|
|
_spec.SetField(user.FieldPassword, field.TypeString, value)
|
|
|
|
|
_node.Password = value
|
|
|
|
|
}
|
|
|
|
|
if value, ok := _c.mutation.Name(); ok {
|
|
|
|
|
_spec.SetField(user.FieldName, field.TypeString, value)
|
|
|
|
|
_node.Name = value
|
|
|
|
|
}
|
|
|
|
|
if value, ok := _c.mutation.RoleId(); ok {
|
|
|
|
|
_spec.SetField(user.FieldRoleId, field.TypeInt, value)
|
|
|
|
|
_node.RoleId = value
|
|
|
|
|
}
|
2026-08-31 08:06:55 +08:00
|
|
|
if value, ok := _c.mutation.CanLoginWorkstation(); ok {
|
|
|
|
|
_spec.SetField(user.FieldCanLoginWorkstation, field.TypeBool, value)
|
|
|
|
|
_node.CanLoginWorkstation = value
|
|
|
|
|
}
|
|
|
|
|
if value, ok := _c.mutation.WorkstationPassword(); ok {
|
|
|
|
|
_spec.SetField(user.FieldWorkstationPassword, field.TypeString, value)
|
|
|
|
|
_node.WorkstationPassword = value
|
|
|
|
|
}
|
2026-08-28 15:06:01 +08:00
|
|
|
if value, ok := _c.mutation.Status(); ok {
|
|
|
|
|
_spec.SetField(user.FieldStatus, field.TypeString, value)
|
|
|
|
|
_node.Status = value
|
|
|
|
|
}
|
2026-09-08 11:44:04 +08:00
|
|
|
if value, ok := _c.mutation.LastLoginAt(); ok {
|
|
|
|
|
_spec.SetField(user.FieldLastLoginAt, field.TypeInt64, value)
|
|
|
|
|
_node.LastLoginAt = &value
|
|
|
|
|
}
|
2026-08-28 15:06:01 +08:00
|
|
|
if value, ok := _c.mutation.CreatedAt(); ok {
|
|
|
|
|
_spec.SetField(user.FieldCreatedAt, field.TypeTime, value)
|
|
|
|
|
_node.CreatedAt = value
|
|
|
|
|
}
|
|
|
|
|
if value, ok := _c.mutation.UpdatedAt(); ok {
|
|
|
|
|
_spec.SetField(user.FieldUpdatedAt, field.TypeTime, value)
|
|
|
|
|
_node.UpdatedAt = &value
|
|
|
|
|
}
|
|
|
|
|
return _node, _spec
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// UserCreateBulk is the builder for creating many User entities in bulk.
|
|
|
|
|
type UserCreateBulk struct {
|
|
|
|
|
config
|
|
|
|
|
err error
|
|
|
|
|
builders []*UserCreate
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Save creates the User entities in the database.
|
|
|
|
|
func (_c *UserCreateBulk) Save(ctx context.Context) ([]*User, error) {
|
|
|
|
|
if _c.err != nil {
|
|
|
|
|
return nil, _c.err
|
|
|
|
|
}
|
|
|
|
|
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
|
|
|
|
|
nodes := make([]*User, 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.(*UserMutation)
|
|
|
|
|
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 *UserCreateBulk) SaveX(ctx context.Context) []*User {
|
|
|
|
|
v, err := _c.Save(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Exec executes the query.
|
|
|
|
|
func (_c *UserCreateBulk) Exec(ctx context.Context) error {
|
|
|
|
|
_, err := _c.Save(ctx)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
|
func (_c *UserCreateBulk) ExecX(ctx context.Context) {
|
|
|
|
|
if err := _c.Exec(ctx); err != nil {
|
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
}
|