namespace WCS.Application; /// /// 系统信息保存输入参数 /// public class SystemSaveInput { /// /// 服务地址 /// public string ServiceAddress { get; set; } /// /// 服务端口 /// public string ServicePort { get; set; } /// /// WMS地址 /// public string WMSAddress { get; set; } /// /// WMS端口 /// public string WMSPort { get; set; } /// /// 赋码系统 /// public string CodingAddress { get; set; } /// /// 赋码端口 /// public string CodingPort { get; set; } /// /// RCS地址 /// public string RCSAddress { get; set; } /// /// RCS端口 /// public string RCSPort { get; set; } /// /// AGV地址 /// public string AGVAddress { get; set; } /// /// AGV端口 /// public string AGVPort { get; set; } }