165 lines
5.4 KiB
Go
165 lines
5.4 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|||
|
|
|
||
|
|
package ent
|
||
|
|
|
||
|
|
import (
|
||
|
|
"bj_power_mes/ent/processroute"
|
||
|
|
"fmt"
|
||
|
|
"strings"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"entgo.io/ent"
|
||
|
|
"entgo.io/ent/dialect/sql"
|
||
|
|
)
|
||
|
|
|
||
|
|
// ProcessRoute is the model entity for the ProcessRoute schema.
|
||
|
|
type ProcessRoute struct {
|
||
|
|
config `json:"-"`
|
||
|
|
// ID of the ent.
|
||
|
|
ID int `json:"id,omitempty"`
|
||
|
|
// 路线名称,如 标准型-A路线
|
||
|
|
Name string `json:"name,omitempty"`
|
||
|
|
// 关联产品型号ID(空=通用路线)
|
||
|
|
ProductTypeId int `json:"productTypeId,omitempty"`
|
||
|
|
// Status holds the value of the "status" field.
|
||
|
|
Status string `json:"status,omitempty"`
|
||
|
|
// Remark holds the value of the "remark" field.
|
||
|
|
Remark string `json:"remark,omitempty"`
|
||
|
|
// CreatedAt holds the value of the "createdAt" field.
|
||
|
|
CreatedAt time.Time `json:"createdAt,omitempty"`
|
||
|
|
// UpdatedAt holds the value of the "updatedAt" field.
|
||
|
|
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
|
||
|
|
selectValues sql.SelectValues
|
||
|
|
}
|
||
|
|
|
||
|
|
// scanValues returns the types for scanning values from sql.Rows.
|
||
|
|
func (*ProcessRoute) scanValues(columns []string) ([]any, error) {
|
||
|
|
values := make([]any, len(columns))
|
||
|
|
for i := range columns {
|
||
|
|
switch columns[i] {
|
||
|
|
case processroute.FieldID, processroute.FieldProductTypeId:
|
||
|
|
values[i] = new(sql.NullInt64)
|
||
|
|
case processroute.FieldName, processroute.FieldStatus, processroute.FieldRemark:
|
||
|
|
values[i] = new(sql.NullString)
|
||
|
|
case processroute.FieldCreatedAt, processroute.FieldUpdatedAt:
|
||
|
|
values[i] = new(sql.NullTime)
|
||
|
|
default:
|
||
|
|
values[i] = new(sql.UnknownType)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return values, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// assignValues assigns the values that were returned from sql.Rows (after scanning)
|
||
|
|
// to the ProcessRoute fields.
|
||
|
|
func (_m *ProcessRoute) 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 processroute.FieldID:
|
||
|
|
value, ok := values[i].(*sql.NullInt64)
|
||
|
|
if !ok {
|
||
|
|
return fmt.Errorf("unexpected type %T for field id", value)
|
||
|
|
}
|
||
|
|
_m.ID = int(value.Int64)
|
||
|
|
case processroute.FieldName:
|
||
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
||
|
|
return fmt.Errorf("unexpected type %T for field name", values[i])
|
||
|
|
} else if value.Valid {
|
||
|
|
_m.Name = value.String
|
||
|
|
}
|
||
|
|
case processroute.FieldProductTypeId:
|
||
|
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
||
|
|
return fmt.Errorf("unexpected type %T for field productTypeId", values[i])
|
||
|
|
} else if value.Valid {
|
||
|
|
_m.ProductTypeId = int(value.Int64)
|
||
|
|
}
|
||
|
|
case processroute.FieldStatus:
|
||
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
||
|
|
return fmt.Errorf("unexpected type %T for field status", values[i])
|
||
|
|
} else if value.Valid {
|
||
|
|
_m.Status = value.String
|
||
|
|
}
|
||
|
|
case processroute.FieldRemark:
|
||
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
||
|
|
return fmt.Errorf("unexpected type %T for field remark", values[i])
|
||
|
|
} else if value.Valid {
|
||
|
|
_m.Remark = value.String
|
||
|
|
}
|
||
|
|
case processroute.FieldCreatedAt:
|
||
|
|
if value, ok := values[i].(*sql.NullTime); !ok {
|
||
|
|
return fmt.Errorf("unexpected type %T for field createdAt", values[i])
|
||
|
|
} else if value.Valid {
|
||
|
|
_m.CreatedAt = value.Time
|
||
|
|
}
|
||
|
|
case processroute.FieldUpdatedAt:
|
||
|
|
if value, ok := values[i].(*sql.NullTime); !ok {
|
||
|
|
return fmt.Errorf("unexpected type %T for field updatedAt", values[i])
|
||
|
|
} else if value.Valid {
|
||
|
|
_m.UpdatedAt = new(time.Time)
|
||
|
|
*_m.UpdatedAt = value.Time
|
||
|
|
}
|
||
|
|
default:
|
||
|
|
_m.selectValues.Set(columns[i], values[i])
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// Value returns the ent.Value that was dynamically selected and assigned to the ProcessRoute.
|
||
|
|
// This includes values selected through modifiers, order, etc.
|
||
|
|
func (_m *ProcessRoute) Value(name string) (ent.Value, error) {
|
||
|
|
return _m.selectValues.Get(name)
|
||
|
|
}
|
||
|
|
|
||
|
|
// Update returns a builder for updating this ProcessRoute.
|
||
|
|
// Note that you need to call ProcessRoute.Unwrap() before calling this method if this ProcessRoute
|
||
|
|
// was returned from a transaction, and the transaction was committed or rolled back.
|
||
|
|
func (_m *ProcessRoute) Update() *ProcessRouteUpdateOne {
|
||
|
|
return NewProcessRouteClient(_m.config).UpdateOne(_m)
|
||
|
|
}
|
||
|
|
|
||
|
|
// Unwrap unwraps the ProcessRoute 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 (_m *ProcessRoute) Unwrap() *ProcessRoute {
|
||
|
|
_tx, ok := _m.config.driver.(*txDriver)
|
||
|
|
if !ok {
|
||
|
|
panic("ent: ProcessRoute is not a transactional entity")
|
||
|
|
}
|
||
|
|
_m.config.driver = _tx.drv
|
||
|
|
return _m
|
||
|
|
}
|
||
|
|
|
||
|
|
// String implements the fmt.Stringer.
|
||
|
|
func (_m *ProcessRoute) String() string {
|
||
|
|
var builder strings.Builder
|
||
|
|
builder.WriteString("ProcessRoute(")
|
||
|
|
builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID))
|
||
|
|
builder.WriteString("name=")
|
||
|
|
builder.WriteString(_m.Name)
|
||
|
|
builder.WriteString(", ")
|
||
|
|
builder.WriteString("productTypeId=")
|
||
|
|
builder.WriteString(fmt.Sprintf("%v", _m.ProductTypeId))
|
||
|
|
builder.WriteString(", ")
|
||
|
|
builder.WriteString("status=")
|
||
|
|
builder.WriteString(_m.Status)
|
||
|
|
builder.WriteString(", ")
|
||
|
|
builder.WriteString("remark=")
|
||
|
|
builder.WriteString(_m.Remark)
|
||
|
|
builder.WriteString(", ")
|
||
|
|
builder.WriteString("createdAt=")
|
||
|
|
builder.WriteString(_m.CreatedAt.Format(time.ANSIC))
|
||
|
|
builder.WriteString(", ")
|
||
|
|
if v := _m.UpdatedAt; v != nil {
|
||
|
|
builder.WriteString("updatedAt=")
|
||
|
|
builder.WriteString(v.Format(time.ANSIC))
|
||
|
|
}
|
||
|
|
builder.WriteByte(')')
|
||
|
|
return builder.String()
|
||
|
|
}
|
||
|
|
|
||
|
|
// ProcessRoutes is a parsable slice of ProcessRoute.
|
||
|
|
type ProcessRoutes []*ProcessRoute
|