using Admin.NET.Application.Entity;
|
|
namespace Admin.NET.Application
|
{
|
internal class ContainerFindEmptyPlaceHandle : FindEmptyPlaceServiceHandle
|
{
|
public ContainerFindEmptyPlaceHandle(SqlSugarRepository<v_empty_place> v_empty_placeRep,
|
SqlSugarRepository<WmsBasePlace> _wmsPlaceRep,
|
SqlSugarRepository<WmsTask> wareTaskRep) : base(v_empty_placeRep, _wmsPlaceRep, wareTaskRep)
|
{
|
|
}
|
|
protected override void DiyFilter()
|
{
|
base.DiyFilter();
|
}
|
|
|
protected override async Task QueryBaseEmptyLocationList(FindEmptyPlaceInput input)
|
{
|
await base.QueryBaseEmptyLocationList(input);
|
}
|
|
protected override async Task EnableLaneFilter()
|
{
|
await base.EnableLaneFilter();
|
}
|
protected override async Task TaskOccupyFilter()
|
{
|
await base.TaskOccupyFilter();
|
}
|
|
|
protected override void DataOrder()
|
{
|
base.DataOrder();
|
}
|
}
|
}
|