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,23 @@
package inspection
import (
"net/http"
"bj_power_mes/internal/logic/inspection"
"bj_power_mes/internal/svc"
"github.com/zeromicro/go-zero/rest/httpx"
)
// 获取当前检测信息
func GetInspectionInfoHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
l := inspection.NewGetInspectionInfoLogic(r.Context(), svcCtx)
resp, err := l.GetInspectionInfo()
if err != nil {
httpx.ErrorCtx(r.Context(), w, err)
} else {
httpx.OkJsonCtx(r.Context(), w, resp)
}
}
}
@@ -0,0 +1,30 @@
package inspection
import (
"net/http"
"bj_power_mes/internal/logic/inspection"
"bj_power_mes/internal/svc"
"bj_power_mes/internal/types"
"github.com/zeromicro/go-zero/rest/httpx"
)
// 查询检测图片列表
func QueryInspectionImagesHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.QueryInspectionImagesReq
if err := httpx.Parse(r, &req); err != nil {
httpx.ErrorCtx(r.Context(), w, err)
return
}
l := inspection.NewQueryInspectionImagesLogic(r.Context(), svcCtx)
resp, err := l.QueryInspectionImages(&req)
if err != nil {
httpx.ErrorCtx(r.Context(), w, err)
} else {
httpx.OkJsonCtx(r.Context(), w, resp)
}
}
}