namespace WmsApi.Tools { public class ApiUrlConfig { /// /// Erp的IP /// public string ErpHost { get; set; } /// /// Wcs的IP /// public string WcsHost { get; set; } /// /// 追溯或赋码的IP /// public string BoxHost { get; set; } #region 上游系统 /// /// 入库订单关闭上传 /// public string AsnFinishUrl { get; set; } /// /// 出库订单关闭上传 /// public string SoFinishUrl { get; set; } /// /// 库存变更上传(盘库调整后) /// public string DataChangeUrl { get; set; } /// /// 获取箱码信息--从追溯或赋码系统 /// public string GetBoxUrl { get; set; } #endregion #region 下游系统 /// /// 下发命令接口url(出库、移库) /// public string IssueComApiUrl { get; set; } /// /// 下发命令接口url(取消、完成) /// public string FinshComApiUrl { get; set; } /// /// 下发出入库任务优先级 /// public string TaskYouxian { get; set; } #endregion #region 日志地址 /// /// 130日志地址 /// public string Get130log { get; set; } /// /// 131日志地址 /// public string Get131log { get; set; } #endregion } }