本次提交覆盖多个业务模块的功能完善与体验优化:
1. **鉴权与配置调整**:
- 统一JWT滑动续签逻辑,简化Token存储,移除RefreshToken相关冗余代码
- 调整多项目配置文件中JWT过期时间为3600秒,统一会话闲置窗口
- 工位配置放开1~12限制,改为仅校验大于0
2. **术语统一替换**:全链路将"精密件"替换为"电气件",修正物料管理描述
3. **功能新增**:
- 新增工位类型、工艺路线与产线点位台账模块
- 添加工艺PDF预览面板、工位终端代理转发接口
- 新增操作日志按操作人列表筛选、工位登出日志记录
- 新增PLC移料指令与产线点位状态管理
4. **业务流程优化**:
- 调整BOM物料删除校验逻辑,优化工单备料计算
- 补充物料图号、检测单号等追溯字段
- 完善工艺流程图与工位绑定关系说明
- 优化前端页面文案与交互细节
5. **代码规范与维护**:
- 新增通用工具函数与前端静态资源
- 整理路由权限与中间件逻辑
- 修复部分接口与配置的不兼容问题
411 lines
14 KiB
Go
411 lines
14 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package routesegment
|
|
|
|
import (
|
|
"bj_power_mes/ent/predicate"
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// RouteId applies equality check predicate on the "routeId" field. It's identical to RouteIdEQ.
|
|
func RouteId(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldRouteId, v))
|
|
}
|
|
|
|
// Seq applies equality check predicate on the "seq" field. It's identical to SeqEQ.
|
|
func Seq(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldSeq, v))
|
|
}
|
|
|
|
// FlowId applies equality check predicate on the "flowId" field. It's identical to FlowIdEQ.
|
|
func FlowId(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldFlowId, v))
|
|
}
|
|
|
|
// SegmentType applies equality check predicate on the "segmentType" field. It's identical to SegmentTypeEQ.
|
|
func SegmentType(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldSegmentType, v))
|
|
}
|
|
|
|
// Remark applies equality check predicate on the "remark" field. It's identical to RemarkEQ.
|
|
func Remark(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldRemark, v))
|
|
}
|
|
|
|
// CreatedAt applies equality check predicate on the "createdAt" field. It's identical to CreatedAtEQ.
|
|
func CreatedAt(v time.Time) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// RouteIdEQ applies the EQ predicate on the "routeId" field.
|
|
func RouteIdEQ(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldRouteId, v))
|
|
}
|
|
|
|
// RouteIdNEQ applies the NEQ predicate on the "routeId" field.
|
|
func RouteIdNEQ(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNEQ(FieldRouteId, v))
|
|
}
|
|
|
|
// RouteIdIn applies the In predicate on the "routeId" field.
|
|
func RouteIdIn(vs ...int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldIn(FieldRouteId, vs...))
|
|
}
|
|
|
|
// RouteIdNotIn applies the NotIn predicate on the "routeId" field.
|
|
func RouteIdNotIn(vs ...int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNotIn(FieldRouteId, vs...))
|
|
}
|
|
|
|
// RouteIdGT applies the GT predicate on the "routeId" field.
|
|
func RouteIdGT(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGT(FieldRouteId, v))
|
|
}
|
|
|
|
// RouteIdGTE applies the GTE predicate on the "routeId" field.
|
|
func RouteIdGTE(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGTE(FieldRouteId, v))
|
|
}
|
|
|
|
// RouteIdLT applies the LT predicate on the "routeId" field.
|
|
func RouteIdLT(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLT(FieldRouteId, v))
|
|
}
|
|
|
|
// RouteIdLTE applies the LTE predicate on the "routeId" field.
|
|
func RouteIdLTE(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLTE(FieldRouteId, v))
|
|
}
|
|
|
|
// SeqEQ applies the EQ predicate on the "seq" field.
|
|
func SeqEQ(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldSeq, v))
|
|
}
|
|
|
|
// SeqNEQ applies the NEQ predicate on the "seq" field.
|
|
func SeqNEQ(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNEQ(FieldSeq, v))
|
|
}
|
|
|
|
// SeqIn applies the In predicate on the "seq" field.
|
|
func SeqIn(vs ...int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldIn(FieldSeq, vs...))
|
|
}
|
|
|
|
// SeqNotIn applies the NotIn predicate on the "seq" field.
|
|
func SeqNotIn(vs ...int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNotIn(FieldSeq, vs...))
|
|
}
|
|
|
|
// SeqGT applies the GT predicate on the "seq" field.
|
|
func SeqGT(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGT(FieldSeq, v))
|
|
}
|
|
|
|
// SeqGTE applies the GTE predicate on the "seq" field.
|
|
func SeqGTE(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGTE(FieldSeq, v))
|
|
}
|
|
|
|
// SeqLT applies the LT predicate on the "seq" field.
|
|
func SeqLT(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLT(FieldSeq, v))
|
|
}
|
|
|
|
// SeqLTE applies the LTE predicate on the "seq" field.
|
|
func SeqLTE(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLTE(FieldSeq, v))
|
|
}
|
|
|
|
// FlowIdEQ applies the EQ predicate on the "flowId" field.
|
|
func FlowIdEQ(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldFlowId, v))
|
|
}
|
|
|
|
// FlowIdNEQ applies the NEQ predicate on the "flowId" field.
|
|
func FlowIdNEQ(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNEQ(FieldFlowId, v))
|
|
}
|
|
|
|
// FlowIdIn applies the In predicate on the "flowId" field.
|
|
func FlowIdIn(vs ...int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldIn(FieldFlowId, vs...))
|
|
}
|
|
|
|
// FlowIdNotIn applies the NotIn predicate on the "flowId" field.
|
|
func FlowIdNotIn(vs ...int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNotIn(FieldFlowId, vs...))
|
|
}
|
|
|
|
// FlowIdGT applies the GT predicate on the "flowId" field.
|
|
func FlowIdGT(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGT(FieldFlowId, v))
|
|
}
|
|
|
|
// FlowIdGTE applies the GTE predicate on the "flowId" field.
|
|
func FlowIdGTE(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGTE(FieldFlowId, v))
|
|
}
|
|
|
|
// FlowIdLT applies the LT predicate on the "flowId" field.
|
|
func FlowIdLT(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLT(FieldFlowId, v))
|
|
}
|
|
|
|
// FlowIdLTE applies the LTE predicate on the "flowId" field.
|
|
func FlowIdLTE(v int) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLTE(FieldFlowId, v))
|
|
}
|
|
|
|
// FlowIdIsNil applies the IsNil predicate on the "flowId" field.
|
|
func FlowIdIsNil() predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldIsNull(FieldFlowId))
|
|
}
|
|
|
|
// FlowIdNotNil applies the NotNil predicate on the "flowId" field.
|
|
func FlowIdNotNil() predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNotNull(FieldFlowId))
|
|
}
|
|
|
|
// StationsIsNil applies the IsNil predicate on the "stations" field.
|
|
func StationsIsNil() predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldIsNull(FieldStations))
|
|
}
|
|
|
|
// StationsNotNil applies the NotNil predicate on the "stations" field.
|
|
func StationsNotNil() predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNotNull(FieldStations))
|
|
}
|
|
|
|
// SegmentTypeEQ applies the EQ predicate on the "segmentType" field.
|
|
func SegmentTypeEQ(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeNEQ applies the NEQ predicate on the "segmentType" field.
|
|
func SegmentTypeNEQ(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNEQ(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeIn applies the In predicate on the "segmentType" field.
|
|
func SegmentTypeIn(vs ...string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldIn(FieldSegmentType, vs...))
|
|
}
|
|
|
|
// SegmentTypeNotIn applies the NotIn predicate on the "segmentType" field.
|
|
func SegmentTypeNotIn(vs ...string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNotIn(FieldSegmentType, vs...))
|
|
}
|
|
|
|
// SegmentTypeGT applies the GT predicate on the "segmentType" field.
|
|
func SegmentTypeGT(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGT(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeGTE applies the GTE predicate on the "segmentType" field.
|
|
func SegmentTypeGTE(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGTE(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeLT applies the LT predicate on the "segmentType" field.
|
|
func SegmentTypeLT(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLT(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeLTE applies the LTE predicate on the "segmentType" field.
|
|
func SegmentTypeLTE(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLTE(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeContains applies the Contains predicate on the "segmentType" field.
|
|
func SegmentTypeContains(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldContains(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeHasPrefix applies the HasPrefix predicate on the "segmentType" field.
|
|
func SegmentTypeHasPrefix(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldHasPrefix(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeHasSuffix applies the HasSuffix predicate on the "segmentType" field.
|
|
func SegmentTypeHasSuffix(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldHasSuffix(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeEqualFold applies the EqualFold predicate on the "segmentType" field.
|
|
func SegmentTypeEqualFold(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEqualFold(FieldSegmentType, v))
|
|
}
|
|
|
|
// SegmentTypeContainsFold applies the ContainsFold predicate on the "segmentType" field.
|
|
func SegmentTypeContainsFold(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldContainsFold(FieldSegmentType, v))
|
|
}
|
|
|
|
// RemarkEQ applies the EQ predicate on the "remark" field.
|
|
func RemarkEQ(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkNEQ applies the NEQ predicate on the "remark" field.
|
|
func RemarkNEQ(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNEQ(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkIn applies the In predicate on the "remark" field.
|
|
func RemarkIn(vs ...string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldIn(FieldRemark, vs...))
|
|
}
|
|
|
|
// RemarkNotIn applies the NotIn predicate on the "remark" field.
|
|
func RemarkNotIn(vs ...string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNotIn(FieldRemark, vs...))
|
|
}
|
|
|
|
// RemarkGT applies the GT predicate on the "remark" field.
|
|
func RemarkGT(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGT(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkGTE applies the GTE predicate on the "remark" field.
|
|
func RemarkGTE(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGTE(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkLT applies the LT predicate on the "remark" field.
|
|
func RemarkLT(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLT(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkLTE applies the LTE predicate on the "remark" field.
|
|
func RemarkLTE(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLTE(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkContains applies the Contains predicate on the "remark" field.
|
|
func RemarkContains(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldContains(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkHasPrefix applies the HasPrefix predicate on the "remark" field.
|
|
func RemarkHasPrefix(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldHasPrefix(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkHasSuffix applies the HasSuffix predicate on the "remark" field.
|
|
func RemarkHasSuffix(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldHasSuffix(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkEqualFold applies the EqualFold predicate on the "remark" field.
|
|
func RemarkEqualFold(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEqualFold(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkContainsFold applies the ContainsFold predicate on the "remark" field.
|
|
func RemarkContainsFold(v string) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldContainsFold(FieldRemark, v))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "createdAt" field.
|
|
func CreatedAtEQ(v time.Time) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "createdAt" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "createdAt" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "createdAt" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "createdAt" field.
|
|
func CreatedAtGT(v time.Time) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "createdAt" field.
|
|
func CreatedAtGTE(v time.Time) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "createdAt" field.
|
|
func CreatedAtLT(v time.Time) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "createdAt" field.
|
|
func CreatedAtLTE(v time.Time) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.RouteSegment) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.RouteSegment) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.RouteSegment) predicate.RouteSegment {
|
|
return predicate.RouteSegment(sql.NotPredicates(p))
|
|
}
|