You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
283 lines
9.4 KiB
Go
283 lines
9.4 KiB
Go
1 year ago
|
// Code generated by ent, DO NOT EDIT.
|
||
|
|
||
|
package ent
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strings"
|
||
|
"time"
|
||
|
|
||
|
"entgo.io/ent"
|
||
|
"entgo.io/ent/dialect/sql"
|
||
|
"git.noahlan.cn/n-admin/n-admin-server/rpc/core/ent/department"
|
||
|
"git.noahlan.cn/n-admin/n-admin-server/rpc/core/ent/user"
|
||
|
"git.noahlan.cn/noahlan/ntool-biz/core/orm/nent/types"
|
||
|
)
|
||
|
|
||
|
// 系统部门表
|
||
|
type Department struct {
|
||
|
config `json:"-"`
|
||
|
// ID of the ent.
|
||
|
// Primary Key | 主键
|
||
|
ID int64 `json:"id,omitempty"`
|
||
|
// 创建时间
|
||
|
CreatedAt time.Time `json:"created_at,omitempty"`
|
||
|
// 更新时间
|
||
|
UpdatedAt time.Time `json:"updated_at,omitempty"`
|
||
|
// Status | 状态
|
||
|
Status types.Status `json:"status,omitempty"`
|
||
|
// optimistic lock | 乐观锁
|
||
|
Version int64 `json:"version,omitempty"`
|
||
|
// Department name | 部门名称
|
||
|
Name string `json:"name,omitempty"`
|
||
|
// Department leader | 部门负责人
|
||
|
LeaderID int64 `json:"leader_id,omitempty"`
|
||
|
// Remark | 备注
|
||
|
Remark string `json:"remark,omitempty"`
|
||
|
// Parent ID | 直接父级ID
|
||
|
ParentID int64 `json:"parent_id,omitempty"`
|
||
|
// Edges holds the relations/edges for other nodes in the graph.
|
||
|
// The values are being populated by the DepartmentQuery when eager-loading is set.
|
||
|
Edges DepartmentEdges `json:"edges"`
|
||
|
user_departments *int64
|
||
|
selectValues sql.SelectValues
|
||
|
}
|
||
|
|
||
|
// DepartmentEdges holds the relations/edges for other nodes in the graph.
|
||
|
type DepartmentEdges struct {
|
||
|
// Parent holds the value of the parent edge.
|
||
|
Parent *Department `json:"parent,omitempty"`
|
||
|
// Children holds the value of the children edge.
|
||
|
Children []*Department `json:"children,omitempty"`
|
||
|
// User holds the value of the user edge.
|
||
|
User *User `json:"user,omitempty"`
|
||
|
// Leader holds the value of the leader edge.
|
||
|
Leader *User `json:"leader,omitempty"`
|
||
|
// loadedTypes holds the information for reporting if a
|
||
|
// type was loaded (or requested) in eager-loading or not.
|
||
|
loadedTypes [4]bool
|
||
|
}
|
||
|
|
||
|
// ParentOrErr returns the Parent value or an error if the edge
|
||
|
// was not loaded in eager-loading, or loaded but was not found.
|
||
|
func (e DepartmentEdges) ParentOrErr() (*Department, error) {
|
||
|
if e.loadedTypes[0] {
|
||
|
if e.Parent == nil {
|
||
|
// Edge was loaded but was not found.
|
||
|
return nil, &NotFoundError{label: department.Label}
|
||
|
}
|
||
|
return e.Parent, nil
|
||
|
}
|
||
|
return nil, &NotLoadedError{edge: "parent"}
|
||
|
}
|
||
|
|
||
|
// ChildrenOrErr returns the Children value or an error if the edge
|
||
|
// was not loaded in eager-loading.
|
||
|
func (e DepartmentEdges) ChildrenOrErr() ([]*Department, error) {
|
||
|
if e.loadedTypes[1] {
|
||
|
return e.Children, nil
|
||
|
}
|
||
|
return nil, &NotLoadedError{edge: "children"}
|
||
|
}
|
||
|
|
||
|
// UserOrErr returns the User value or an error if the edge
|
||
|
// was not loaded in eager-loading, or loaded but was not found.
|
||
|
func (e DepartmentEdges) UserOrErr() (*User, error) {
|
||
|
if e.loadedTypes[2] {
|
||
|
if e.User == nil {
|
||
|
// Edge was loaded but was not found.
|
||
|
return nil, &NotFoundError{label: user.Label}
|
||
|
}
|
||
|
return e.User, nil
|
||
|
}
|
||
|
return nil, &NotLoadedError{edge: "user"}
|
||
|
}
|
||
|
|
||
|
// LeaderOrErr returns the Leader value or an error if the edge
|
||
|
// was not loaded in eager-loading, or loaded but was not found.
|
||
|
func (e DepartmentEdges) LeaderOrErr() (*User, error) {
|
||
|
if e.loadedTypes[3] {
|
||
|
if e.Leader == nil {
|
||
|
// Edge was loaded but was not found.
|
||
|
return nil, &NotFoundError{label: user.Label}
|
||
|
}
|
||
|
return e.Leader, nil
|
||
|
}
|
||
|
return nil, &NotLoadedError{edge: "leader"}
|
||
|
}
|
||
|
|
||
|
// scanValues returns the types for scanning values from sql.Rows.
|
||
|
func (*Department) scanValues(columns []string) ([]any, error) {
|
||
|
values := make([]any, len(columns))
|
||
|
for i := range columns {
|
||
|
switch columns[i] {
|
||
|
case department.FieldID, department.FieldVersion, department.FieldLeaderID, department.FieldParentID:
|
||
|
values[i] = new(sql.NullInt64)
|
||
|
case department.FieldStatus, department.FieldName, department.FieldRemark:
|
||
|
values[i] = new(sql.NullString)
|
||
|
case department.FieldCreatedAt, department.FieldUpdatedAt:
|
||
|
values[i] = new(sql.NullTime)
|
||
|
case department.ForeignKeys[0]: // user_departments
|
||
|
values[i] = new(sql.NullInt64)
|
||
|
default:
|
||
|
values[i] = new(sql.UnknownType)
|
||
|
}
|
||
|
}
|
||
|
return values, nil
|
||
|
}
|
||
|
|
||
|
// assignValues assigns the values that were returned from sql.Rows (after scanning)
|
||
|
// to the Department fields.
|
||
|
func (d *Department) assignValues(columns []string, values []any) error {
|
||
|
if m, n := len(values), len(columns); m < n {
|
||
|
return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
|
||
|
}
|
||
|
for i := range columns {
|
||
|
switch columns[i] {
|
||
|
case department.FieldID:
|
||
|
value, ok := values[i].(*sql.NullInt64)
|
||
|
if !ok {
|
||
|
return fmt.Errorf("unexpected type %T for field id", value)
|
||
|
}
|
||
|
d.ID = int64(value.Int64)
|
||
|
case department.FieldCreatedAt:
|
||
|
if value, ok := values[i].(*sql.NullTime); !ok {
|
||
|
return fmt.Errorf("unexpected type %T for field created_at", values[i])
|
||
|
} else if value.Valid {
|
||
|
d.CreatedAt = value.Time
|
||
|
}
|
||
|
case department.FieldUpdatedAt:
|
||
|
if value, ok := values[i].(*sql.NullTime); !ok {
|
||
|
return fmt.Errorf("unexpected type %T for field updated_at", values[i])
|
||
|
} else if value.Valid {
|
||
|
d.UpdatedAt = value.Time
|
||
|
}
|
||
|
case department.FieldStatus:
|
||
|
if value, ok := values[i].(*sql.NullString); !ok {
|
||
|
return fmt.Errorf("unexpected type %T for field status", values[i])
|
||
|
} else if value.Valid {
|
||
|
d.Status = types.Status(value.String)
|
||
|
}
|
||
|
case department.FieldVersion:
|
||
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
||
|
return fmt.Errorf("unexpected type %T for field version", values[i])
|
||
|
} else if value.Valid {
|
||
|
d.Version = value.Int64
|
||
|
}
|
||
|
case department.FieldName:
|
||
|
if value, ok := values[i].(*sql.NullString); !ok {
|
||
|
return fmt.Errorf("unexpected type %T for field name", values[i])
|
||
|
} else if value.Valid {
|
||
|
d.Name = value.String
|
||
|
}
|
||
|
case department.FieldLeaderID:
|
||
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
||
|
return fmt.Errorf("unexpected type %T for field leader_id", values[i])
|
||
|
} else if value.Valid {
|
||
|
d.LeaderID = value.Int64
|
||
|
}
|
||
|
case department.FieldRemark:
|
||
|
if value, ok := values[i].(*sql.NullString); !ok {
|
||
|
return fmt.Errorf("unexpected type %T for field remark", values[i])
|
||
|
} else if value.Valid {
|
||
|
d.Remark = value.String
|
||
|
}
|
||
|
case department.FieldParentID:
|
||
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
||
|
return fmt.Errorf("unexpected type %T for field parent_id", values[i])
|
||
|
} else if value.Valid {
|
||
|
d.ParentID = value.Int64
|
||
|
}
|
||
|
case department.ForeignKeys[0]:
|
||
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
||
|
return fmt.Errorf("unexpected type %T for edge-field user_departments", value)
|
||
|
} else if value.Valid {
|
||
|
d.user_departments = new(int64)
|
||
|
*d.user_departments = int64(value.Int64)
|
||
|
}
|
||
|
default:
|
||
|
d.selectValues.Set(columns[i], values[i])
|
||
|
}
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// Value returns the ent.Value that was dynamically selected and assigned to the Department.
|
||
|
// This includes values selected through modifiers, order, etc.
|
||
|
func (d *Department) Value(name string) (ent.Value, error) {
|
||
|
return d.selectValues.Get(name)
|
||
|
}
|
||
|
|
||
|
// QueryParent queries the "parent" edge of the Department entity.
|
||
|
func (d *Department) QueryParent() *DepartmentQuery {
|
||
|
return NewDepartmentClient(d.config).QueryParent(d)
|
||
|
}
|
||
|
|
||
|
// QueryChildren queries the "children" edge of the Department entity.
|
||
|
func (d *Department) QueryChildren() *DepartmentQuery {
|
||
|
return NewDepartmentClient(d.config).QueryChildren(d)
|
||
|
}
|
||
|
|
||
|
// QueryUser queries the "user" edge of the Department entity.
|
||
|
func (d *Department) QueryUser() *UserQuery {
|
||
|
return NewDepartmentClient(d.config).QueryUser(d)
|
||
|
}
|
||
|
|
||
|
// QueryLeader queries the "leader" edge of the Department entity.
|
||
|
func (d *Department) QueryLeader() *UserQuery {
|
||
|
return NewDepartmentClient(d.config).QueryLeader(d)
|
||
|
}
|
||
|
|
||
|
// Update returns a builder for updating this Department.
|
||
|
// Note that you need to call Department.Unwrap() before calling this method if this Department
|
||
|
// was returned from a transaction, and the transaction was committed or rolled back.
|
||
|
func (d *Department) Update() *DepartmentUpdateOne {
|
||
|
return NewDepartmentClient(d.config).UpdateOne(d)
|
||
|
}
|
||
|
|
||
|
// Unwrap unwraps the Department entity that was returned from a transaction after it was closed,
|
||
|
// so that all future queries will be executed through the driver which created the transaction.
|
||
|
func (d *Department) Unwrap() *Department {
|
||
|
_tx, ok := d.config.driver.(*txDriver)
|
||
|
if !ok {
|
||
|
panic("ent: Department is not a transactional entity")
|
||
|
}
|
||
|
d.config.driver = _tx.drv
|
||
|
return d
|
||
|
}
|
||
|
|
||
|
// String implements the fmt.Stringer.
|
||
|
func (d *Department) String() string {
|
||
|
var builder strings.Builder
|
||
|
builder.WriteString("Department(")
|
||
|
builder.WriteString(fmt.Sprintf("id=%v, ", d.ID))
|
||
|
builder.WriteString("created_at=")
|
||
|
builder.WriteString(d.CreatedAt.Format(time.ANSIC))
|
||
|
builder.WriteString(", ")
|
||
|
builder.WriteString("updated_at=")
|
||
|
builder.WriteString(d.UpdatedAt.Format(time.ANSIC))
|
||
|
builder.WriteString(", ")
|
||
|
builder.WriteString("status=")
|
||
|
builder.WriteString(fmt.Sprintf("%v", d.Status))
|
||
|
builder.WriteString(", ")
|
||
|
builder.WriteString("version=")
|
||
|
builder.WriteString(fmt.Sprintf("%v", d.Version))
|
||
|
builder.WriteString(", ")
|
||
|
builder.WriteString("name=")
|
||
|
builder.WriteString(d.Name)
|
||
|
builder.WriteString(", ")
|
||
|
builder.WriteString("leader_id=")
|
||
|
builder.WriteString(fmt.Sprintf("%v", d.LeaderID))
|
||
|
builder.WriteString(", ")
|
||
|
builder.WriteString("remark=")
|
||
|
builder.WriteString(d.Remark)
|
||
|
builder.WriteString(", ")
|
||
|
builder.WriteString("parent_id=")
|
||
|
builder.WriteString(fmt.Sprintf("%v", d.ParentID))
|
||
|
builder.WriteByte(')')
|
||
|
return builder.String()
|
||
|
}
|
||
|
|
||
|
// Departments is a parsable slice of Department.
|
||
|
type Departments []*Department
|