refactor: 合并原库房客户端到主WMS服务,退役8891端口

1.  将bj_power_wms_client的前端代码、配置及网关逻辑全部迁移到bj_power_wms主项目
2.  删除原库房客户端相关的所有文件与配置
3.  更新README与部署文档,说明合并后的服务架构
4.  新增Web配置项支持自动打开浏览器开关,统一服务端口为8890
This commit is contained in:
SunYF
2026-09-07 15:55:30 +08:00
parent 649d2cc358
commit 2544c6141d
49 changed files with 115 additions and 488 deletions
+6
View File
@@ -43,6 +43,11 @@ type AgvConfig struct {
PollInterval int `json:",default=10"` // 任务状态轮询间隔(秒)
}
// WebConfig 前端静态资源托管配置(原库房客户端 8891 已合并进主服务)
type WebConfig struct {
OpenBrowser bool `json:",default=true"` // 本机开发时启动后自动打开浏览器;服务器部署设为 false
}
type Config struct {
rest.RestConf
Postgres PostgresConfig
@@ -51,6 +56,7 @@ type Config struct {
Redis RedisConf
Mes MesConfig
Agv AgvConfig
Web WebConfig
}
// RedisConf Redis 连接配置