feat: 完成MES工位终端系统全量功能迭代

本次提交包含以下核心变更:
1. 新增按钮级权限控制框架与前端权限校验
2. 新增工位管理、工艺流程、巡检终端等核心业务模块
3. 完善用户体系,支持工位终端专属登录权限
4. 新增文件上传下载、报表查询等配套功能
5. 修复多系统兼容性与交互体验问题
6. 完成所有文档与配置项的规范化更新
This commit is contained in:
SunYF
2026-08-31 08:06:55 +08:00
parent dab03ac0cf
commit 4ec6784629
99 changed files with 17436 additions and 479 deletions
@@ -0,0 +1,72 @@
// Code generated by ent, DO NOT EDIT.
package userstation
import (
"time"
"entgo.io/ent/dialect/sql"
)
const (
// Label holds the string label denoting the userstation type in the database.
Label = "user_station"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// FieldUserId holds the string denoting the userid field in the database.
FieldUserId = "user_id"
// FieldStationNo holds the string denoting the stationno field in the database.
FieldStationNo = "station_no"
// FieldCreatedAt holds the string denoting the createdat field in the database.
FieldCreatedAt = "created_at"
// Table holds the table name of the userstation in the database.
Table = "user_station"
)
// Columns holds all SQL columns for userstation fields.
var Columns = []string{
FieldID,
FieldUserId,
FieldStationNo,
FieldCreatedAt,
}
// ValidColumn reports if the column name is valid (part of the table columns).
func ValidColumn(column string) bool {
for i := range Columns {
if column == Columns[i] {
return true
}
}
return false
}
var (
// DefaultCreatedAt holds the default value on creation for the "createdAt" field.
DefaultCreatedAt func() time.Time
// IDValidator is a validator for the "id" field. It is called by the builders before save.
IDValidator func(int) error
)
// OrderOption defines the ordering options for the UserStation queries.
type OrderOption func(*sql.Selector)
// ByID orders the results by the id field.
func ByID(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldID, opts...).ToFunc()
}
// ByUserId orders the results by the userId field.
func ByUserId(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldUserId, opts...).ToFunc()
}
// ByStationNo orders the results by the stationNo field.
func ByStationNo(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldStationNo, opts...).ToFunc()
}
// ByCreatedAt orders the results by the createdAt field.
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
}
+205
View File
@@ -0,0 +1,205 @@
// Code generated by ent, DO NOT EDIT.
package userstation
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.UserStation {
return predicate.UserStation(sql.FieldEQ(FieldID, id))
}
// IDEQ applies the EQ predicate on the ID field.
func IDEQ(id int) predicate.UserStation {
return predicate.UserStation(sql.FieldEQ(FieldID, id))
}
// IDNEQ applies the NEQ predicate on the ID field.
func IDNEQ(id int) predicate.UserStation {
return predicate.UserStation(sql.FieldNEQ(FieldID, id))
}
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...int) predicate.UserStation {
return predicate.UserStation(sql.FieldIn(FieldID, ids...))
}
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...int) predicate.UserStation {
return predicate.UserStation(sql.FieldNotIn(FieldID, ids...))
}
// IDGT applies the GT predicate on the ID field.
func IDGT(id int) predicate.UserStation {
return predicate.UserStation(sql.FieldGT(FieldID, id))
}
// IDGTE applies the GTE predicate on the ID field.
func IDGTE(id int) predicate.UserStation {
return predicate.UserStation(sql.FieldGTE(FieldID, id))
}
// IDLT applies the LT predicate on the ID field.
func IDLT(id int) predicate.UserStation {
return predicate.UserStation(sql.FieldLT(FieldID, id))
}
// IDLTE applies the LTE predicate on the ID field.
func IDLTE(id int) predicate.UserStation {
return predicate.UserStation(sql.FieldLTE(FieldID, id))
}
// UserId applies equality check predicate on the "userId" field. It's identical to UserIdEQ.
func UserId(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldEQ(FieldUserId, v))
}
// StationNo applies equality check predicate on the "stationNo" field. It's identical to StationNoEQ.
func StationNo(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldEQ(FieldStationNo, v))
}
// CreatedAt applies equality check predicate on the "createdAt" field. It's identical to CreatedAtEQ.
func CreatedAt(v time.Time) predicate.UserStation {
return predicate.UserStation(sql.FieldEQ(FieldCreatedAt, v))
}
// UserIdEQ applies the EQ predicate on the "userId" field.
func UserIdEQ(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldEQ(FieldUserId, v))
}
// UserIdNEQ applies the NEQ predicate on the "userId" field.
func UserIdNEQ(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldNEQ(FieldUserId, v))
}
// UserIdIn applies the In predicate on the "userId" field.
func UserIdIn(vs ...int) predicate.UserStation {
return predicate.UserStation(sql.FieldIn(FieldUserId, vs...))
}
// UserIdNotIn applies the NotIn predicate on the "userId" field.
func UserIdNotIn(vs ...int) predicate.UserStation {
return predicate.UserStation(sql.FieldNotIn(FieldUserId, vs...))
}
// UserIdGT applies the GT predicate on the "userId" field.
func UserIdGT(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldGT(FieldUserId, v))
}
// UserIdGTE applies the GTE predicate on the "userId" field.
func UserIdGTE(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldGTE(FieldUserId, v))
}
// UserIdLT applies the LT predicate on the "userId" field.
func UserIdLT(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldLT(FieldUserId, v))
}
// UserIdLTE applies the LTE predicate on the "userId" field.
func UserIdLTE(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldLTE(FieldUserId, v))
}
// StationNoEQ applies the EQ predicate on the "stationNo" field.
func StationNoEQ(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldEQ(FieldStationNo, v))
}
// StationNoNEQ applies the NEQ predicate on the "stationNo" field.
func StationNoNEQ(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldNEQ(FieldStationNo, v))
}
// StationNoIn applies the In predicate on the "stationNo" field.
func StationNoIn(vs ...int) predicate.UserStation {
return predicate.UserStation(sql.FieldIn(FieldStationNo, vs...))
}
// StationNoNotIn applies the NotIn predicate on the "stationNo" field.
func StationNoNotIn(vs ...int) predicate.UserStation {
return predicate.UserStation(sql.FieldNotIn(FieldStationNo, vs...))
}
// StationNoGT applies the GT predicate on the "stationNo" field.
func StationNoGT(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldGT(FieldStationNo, v))
}
// StationNoGTE applies the GTE predicate on the "stationNo" field.
func StationNoGTE(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldGTE(FieldStationNo, v))
}
// StationNoLT applies the LT predicate on the "stationNo" field.
func StationNoLT(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldLT(FieldStationNo, v))
}
// StationNoLTE applies the LTE predicate on the "stationNo" field.
func StationNoLTE(v int) predicate.UserStation {
return predicate.UserStation(sql.FieldLTE(FieldStationNo, v))
}
// CreatedAtEQ applies the EQ predicate on the "createdAt" field.
func CreatedAtEQ(v time.Time) predicate.UserStation {
return predicate.UserStation(sql.FieldEQ(FieldCreatedAt, v))
}
// CreatedAtNEQ applies the NEQ predicate on the "createdAt" field.
func CreatedAtNEQ(v time.Time) predicate.UserStation {
return predicate.UserStation(sql.FieldNEQ(FieldCreatedAt, v))
}
// CreatedAtIn applies the In predicate on the "createdAt" field.
func CreatedAtIn(vs ...time.Time) predicate.UserStation {
return predicate.UserStation(sql.FieldIn(FieldCreatedAt, vs...))
}
// CreatedAtNotIn applies the NotIn predicate on the "createdAt" field.
func CreatedAtNotIn(vs ...time.Time) predicate.UserStation {
return predicate.UserStation(sql.FieldNotIn(FieldCreatedAt, vs...))
}
// CreatedAtGT applies the GT predicate on the "createdAt" field.
func CreatedAtGT(v time.Time) predicate.UserStation {
return predicate.UserStation(sql.FieldGT(FieldCreatedAt, v))
}
// CreatedAtGTE applies the GTE predicate on the "createdAt" field.
func CreatedAtGTE(v time.Time) predicate.UserStation {
return predicate.UserStation(sql.FieldGTE(FieldCreatedAt, v))
}
// CreatedAtLT applies the LT predicate on the "createdAt" field.
func CreatedAtLT(v time.Time) predicate.UserStation {
return predicate.UserStation(sql.FieldLT(FieldCreatedAt, v))
}
// CreatedAtLTE applies the LTE predicate on the "createdAt" field.
func CreatedAtLTE(v time.Time) predicate.UserStation {
return predicate.UserStation(sql.FieldLTE(FieldCreatedAt, v))
}
// And groups predicates with the AND operator between them.
func And(predicates ...predicate.UserStation) predicate.UserStation {
return predicate.UserStation(sql.AndPredicates(predicates...))
}
// Or groups predicates with the OR operator between them.
func Or(predicates ...predicate.UserStation) predicate.UserStation {
return predicate.UserStation(sql.OrPredicates(predicates...))
}
// Not applies the not operator on the given predicate.
func Not(p predicate.UserStation) predicate.UserStation {
return predicate.UserStation(sql.NotPredicates(p))
}