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
+28
View File
@@ -0,0 +1,28 @@
syntax = "v1"
type (
AgvRequestEntryReq {
EventId string `json:"eventId"`
IsLoaded string `json:"IsLoaded"`
PalletId string `json:"palletid"`
StationCode string `json:"stationCode"`
Direction string `json:"direction"`
CreatedAt string `json:"createdAt,optional"`
BillNo string `json:"BillNo,optional"`
}
AgvRequestEntryReply {
Id string `json:"id"`
Code string `json:"Code"`
Msg string `json:"msg"`
}
)
@server (
group: agv
prefix: /api/v1
)
service hougai-api {
@doc "MOM业务: AGV对自动线进出请求接口 (AGV => 自动线)"
@handler agvRequestEntry
post /agv/request-entry (AgvRequestEntryReq) returns (AgvRequestEntryReply)
}