21 lines
541 B
C#
21 lines
541 B
C#
using WcsMain.Business.Convey.DataHandler.GetRouter.I;
|
|
using WcsMain.Tcp.Entity.Convey;
|
|
|
|
namespace WcsMain.Business.Convey.DataHandler.GetRouter;
|
|
|
|
/// <summary>
|
|
/// 补货获取路向
|
|
/// </summary>
|
|
public class ReplenishGetRouter : IBaseGetRouter
|
|
{
|
|
public void ReadFail(GetRouterData routerData, string? disPlayName, string msg)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void ReadSuccess(GetRouterData routerData, string? disPlayName, string msg)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|