2024-06-12 07:29:44 +08:00
|
|
|
|
using WcsMain.Business.Convey.DataHandler.GetRouter.I;
|
|
|
|
|
|
using WcsMain.Tcp.Entity.Convey;
|
|
|
|
|
|
|
|
|
|
|
|
namespace WcsMain.Business.Convey.DataHandler.GetRouter;
|
2024-05-14 16:30:56 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发货获取路向
|
|
|
|
|
|
/// </summary>
|
2024-06-12 07:29:44 +08:00
|
|
|
|
public class DeliverGetRouter : IBaseGetRouter
|
2024-05-14 16:30:56 +08:00
|
|
|
|
{
|
2024-06-12 07:29:44 +08:00
|
|
|
|
public void ReadFail(GetRouterData routerData, string? disPlayName, string msg)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void ReadSuccess(GetRouterData routerData, string? disPlayName, string msg)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
2024-05-14 16:30:56 +08:00
|
|
|
|
}
|