fix: rebuild MES as compilable go-zero+ent backend (renamed bj_power_mes), restore 3 workstation projects from pristine original, align naming; all Go projects go build clean

This commit is contained in:
SunYF
2026-08-27 10:56:41 +08:00
parent 380715f8a9
commit 371b494c54
523 changed files with 67923 additions and 24758 deletions
@@ -0,0 +1,21 @@
package processor
import "bj_power_mes/internal/processor/eventloop"
// 以下类型是 eventloop 中定义的共享类型,processor 通过别名复用,保持向后兼容
type (
OrderProcessorInterface = eventloop.OrderProcessorInterface
StationMonitorData = eventloop.StationMonitorData
SlotState = eventloop.SlotState
EventLoopSender = eventloop.EventLoopSender
CancelOrderItem = eventloop.CancelOrderItem
)
// StubProcessor 的别名
type StubProcessor = eventloop.StubProcessor
// DoneSlotParam 批量卸料参数
type DoneSlotParam = eventloop.DoneSlotParam
// ReplenishItem 补料项
type ReplenishItem = eventloop.ReplenishItem