feat: 新增预警与附件模块,优化工位派工功能
1. 新增预警规则、预警消息、业务附件数据库表与CRUD逻辑 2. 为拧紧记录添加审核人、审核时间字段及审核留痕功能 3. 优化产线点位类型与编号描述,更新工位组合下发菜单名称为工艺路线派工 4. 新增上传文件获取原文件名与大小的工具方法 5. 在系统管理菜单新增预警中心与附件中心入口
This commit is contained in:
@@ -0,0 +1,205 @@
|
||||
// Code generated by ent, DO NOT EDIT.
|
||||
|
||||
package ent
|
||||
|
||||
import (
|
||||
"bj_power_mes/ent/plcmovecmd"
|
||||
"fmt"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"entgo.io/ent"
|
||||
"entgo.io/ent/dialect/sql"
|
||||
)
|
||||
|
||||
// PlcMoveCmd is the model entity for the PlcMoveCmd schema.
|
||||
type PlcMoveCmd struct {
|
||||
config `json:"-"`
|
||||
// ID of the ent.
|
||||
ID int `json:"id,omitempty"`
|
||||
// 指令号(幂等去重)
|
||||
CmdNo string `json:"cmdNo,omitempty"`
|
||||
// 被移工件SN
|
||||
Sn string `json:"sn,omitempty"`
|
||||
// 所属工单号
|
||||
OrderNo string `json:"orderNo,omitempty"`
|
||||
// 起点位编号
|
||||
FromPoint string `json:"fromPoint,omitempty"`
|
||||
// 目标点位编号
|
||||
ToPoint string `json:"toPoint,omitempty"`
|
||||
// ISSUED/ACK/ARRIVED/CLOSED/FAILED
|
||||
Status string `json:"status,omitempty"`
|
||||
// 下发人(SYSTEM=自动)
|
||||
Operator string `json:"operator,omitempty"`
|
||||
// 异常/备注
|
||||
Message string `json:"message,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 (*PlcMoveCmd) scanValues(columns []string) ([]any, error) {
|
||||
values := make([]any, len(columns))
|
||||
for i := range columns {
|
||||
switch columns[i] {
|
||||
case plcmovecmd.FieldID:
|
||||
values[i] = new(sql.NullInt64)
|
||||
case plcmovecmd.FieldCmdNo, plcmovecmd.FieldSn, plcmovecmd.FieldOrderNo, plcmovecmd.FieldFromPoint, plcmovecmd.FieldToPoint, plcmovecmd.FieldStatus, plcmovecmd.FieldOperator, plcmovecmd.FieldMessage:
|
||||
values[i] = new(sql.NullString)
|
||||
case plcmovecmd.FieldCreatedAt, plcmovecmd.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 PlcMoveCmd fields.
|
||||
func (_m *PlcMoveCmd) 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 plcmovecmd.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 plcmovecmd.FieldCmdNo:
|
||||
if value, ok := values[i].(*sql.NullString); !ok {
|
||||
return fmt.Errorf("unexpected type %T for field cmdNo", values[i])
|
||||
} else if value.Valid {
|
||||
_m.CmdNo = value.String
|
||||
}
|
||||
case plcmovecmd.FieldSn:
|
||||
if value, ok := values[i].(*sql.NullString); !ok {
|
||||
return fmt.Errorf("unexpected type %T for field sn", values[i])
|
||||
} else if value.Valid {
|
||||
_m.Sn = value.String
|
||||
}
|
||||
case plcmovecmd.FieldOrderNo:
|
||||
if value, ok := values[i].(*sql.NullString); !ok {
|
||||
return fmt.Errorf("unexpected type %T for field orderNo", values[i])
|
||||
} else if value.Valid {
|
||||
_m.OrderNo = value.String
|
||||
}
|
||||
case plcmovecmd.FieldFromPoint:
|
||||
if value, ok := values[i].(*sql.NullString); !ok {
|
||||
return fmt.Errorf("unexpected type %T for field fromPoint", values[i])
|
||||
} else if value.Valid {
|
||||
_m.FromPoint = value.String
|
||||
}
|
||||
case plcmovecmd.FieldToPoint:
|
||||
if value, ok := values[i].(*sql.NullString); !ok {
|
||||
return fmt.Errorf("unexpected type %T for field toPoint", values[i])
|
||||
} else if value.Valid {
|
||||
_m.ToPoint = value.String
|
||||
}
|
||||
case plcmovecmd.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 plcmovecmd.FieldOperator:
|
||||
if value, ok := values[i].(*sql.NullString); !ok {
|
||||
return fmt.Errorf("unexpected type %T for field operator", values[i])
|
||||
} else if value.Valid {
|
||||
_m.Operator = value.String
|
||||
}
|
||||
case plcmovecmd.FieldMessage:
|
||||
if value, ok := values[i].(*sql.NullString); !ok {
|
||||
return fmt.Errorf("unexpected type %T for field message", values[i])
|
||||
} else if value.Valid {
|
||||
_m.Message = value.String
|
||||
}
|
||||
case plcmovecmd.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 plcmovecmd.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 = 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 PlcMoveCmd.
|
||||
// This includes values selected through modifiers, order, etc.
|
||||
func (_m *PlcMoveCmd) Value(name string) (ent.Value, error) {
|
||||
return _m.selectValues.Get(name)
|
||||
}
|
||||
|
||||
// Update returns a builder for updating this PlcMoveCmd.
|
||||
// Note that you need to call PlcMoveCmd.Unwrap() before calling this method if this PlcMoveCmd
|
||||
// was returned from a transaction, and the transaction was committed or rolled back.
|
||||
func (_m *PlcMoveCmd) Update() *PlcMoveCmdUpdateOne {
|
||||
return NewPlcMoveCmdClient(_m.config).UpdateOne(_m)
|
||||
}
|
||||
|
||||
// Unwrap unwraps the PlcMoveCmd 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 *PlcMoveCmd) Unwrap() *PlcMoveCmd {
|
||||
_tx, ok := _m.config.driver.(*txDriver)
|
||||
if !ok {
|
||||
panic("ent: PlcMoveCmd is not a transactional entity")
|
||||
}
|
||||
_m.config.driver = _tx.drv
|
||||
return _m
|
||||
}
|
||||
|
||||
// String implements the fmt.Stringer.
|
||||
func (_m *PlcMoveCmd) String() string {
|
||||
var builder strings.Builder
|
||||
builder.WriteString("PlcMoveCmd(")
|
||||
builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID))
|
||||
builder.WriteString("cmdNo=")
|
||||
builder.WriteString(_m.CmdNo)
|
||||
builder.WriteString(", ")
|
||||
builder.WriteString("sn=")
|
||||
builder.WriteString(_m.Sn)
|
||||
builder.WriteString(", ")
|
||||
builder.WriteString("orderNo=")
|
||||
builder.WriteString(_m.OrderNo)
|
||||
builder.WriteString(", ")
|
||||
builder.WriteString("fromPoint=")
|
||||
builder.WriteString(_m.FromPoint)
|
||||
builder.WriteString(", ")
|
||||
builder.WriteString("toPoint=")
|
||||
builder.WriteString(_m.ToPoint)
|
||||
builder.WriteString(", ")
|
||||
builder.WriteString("status=")
|
||||
builder.WriteString(_m.Status)
|
||||
builder.WriteString(", ")
|
||||
builder.WriteString("operator=")
|
||||
builder.WriteString(_m.Operator)
|
||||
builder.WriteString(", ")
|
||||
builder.WriteString("message=")
|
||||
builder.WriteString(_m.Message)
|
||||
builder.WriteString(", ")
|
||||
builder.WriteString("createdAt=")
|
||||
builder.WriteString(_m.CreatedAt.Format(time.ANSIC))
|
||||
builder.WriteString(", ")
|
||||
builder.WriteString("updatedAt=")
|
||||
builder.WriteString(_m.UpdatedAt.Format(time.ANSIC))
|
||||
builder.WriteByte(')')
|
||||
return builder.String()
|
||||
}
|
||||
|
||||
// PlcMoveCmds is a parsable slice of PlcMoveCmd.
|
||||
type PlcMoveCmds []*PlcMoveCmd
|
||||
Reference in New Issue
Block a user