namespace WCS.Application; /// /// 上下游系统配置常量 /// public class SystemConfigConst { /// /// 服务地址 /// public const string ServiceAddress = "system_service_address"; /// /// 服务端口 /// public const string ServicePort = "system_service_port"; /// /// WMS地址 /// public const string WMSAddress = "system_wms_address"; /// /// WMS端口 /// public const string WMSPort = "system_wms_port"; /// /// 赋码系统地址 /// public const string CodingAddress = "system_coding_address"; /// /// 赋码系统端口 /// public const string CodingPort = "system_coding_port"; /// /// RCS地址 /// public const string RCSAddress = "system_rcs_address"; /// /// RCS端口 /// public const string RCSPort = "system_rcs_port"; /// /// AGV地址 /// public const string AGVAddress = "system_agv_address"; /// /// AGV端口 /// public const string AGVPort = "system_agv_port"; }