Files
bj_power/bj_power_wms_client/internal/config/config.go
T

13 lines
293 B
Go
Raw Normal View History

package config
import (
2026-08-27 19:50:57 +08:00
"github.com/zeromicro/go-zero/rest"
)
2026-08-27 19:50:57 +08:00
// Config 客户端网关配置:无数据库,业务数据全部经反向代理转发到 WMS 后端
type Config struct {
2026-08-27 19:50:57 +08:00
rest.RestConf
// Upstream WMS 后端地址
Upstream string `yaml:",default=http://127.0.0.1:8890"`
}