- 配置向导:登录按 deployment 画像引导平台选型(导航方式/模块/场景),未完成则路由守卫强制进入 /wizard;选型驱动菜单按需裁剪,并联动 SimpleLite 写 plugins/active-scenes.json + 透传 --scenes 选择性加载导航场景插件 - 地图管理页:服务器地图列表/使用/重命名/删除、地图合并、多地图连接管理 - 地图编辑器:项目存取改为存入地图管理统一目录(同名替换确认),支持 ?map=/?new= 进入,新增右侧可停靠 AI 助手面板 - 集成 PTL 拣选模块;新增车队分配面板(运维总览/筛选联动) - SimpleLiteBuildSync 同步运行时依赖 DLL;重新构建前端静态资源 Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
705 B
C#
17 lines
705 B
C#
namespace MiGu.Server.Configs;
|
|
|
|
public record EndpointDescriptor(string Id, string Name, string Url, bool Enabled);
|
|
|
|
public record ExternalIntegrations(
|
|
List<EndpointDescriptor> Mes,
|
|
List<EndpointDescriptor> Wms,
|
|
List<EndpointDescriptor> Rcs,
|
|
List<EndpointDescriptor> Ptl)
|
|
{
|
|
public static ExternalIntegrations Default() => new(
|
|
Mes: new List<EndpointDescriptor> { new("mes-1", "MES 主线", "http://mes.lan/api", true) },
|
|
Wms: new List<EndpointDescriptor> { new("wms-1", "WMS 仓储", "http://wms.lan/api", true) },
|
|
Rcs: new List<EndpointDescriptor>(),
|
|
Ptl: new List<EndpointDescriptor> { new("ptl-1", "PTL 拣选", "http://ptl.lan/api", true) });
|
|
}
|