初始化2

This commit is contained in:
SunYF
2026-08-28 15:06:01 +08:00
parent b34325a16f
commit a9c3fbeb41
537 changed files with 176215 additions and 17 deletions
+12
View File
@@ -0,0 +1,12 @@
@echo off
REM bj_power_wms 构建脚本
cd /d %~dp0
echo Building bj_power_wms...
go build -o bj_power_wms.exe .
if %errorlevel% neq 0 (
echo BUILD FAILED
pause
exit /b 1
)
echo BUILD OK: bj_power_wms.exe
pause