| | |
| | | import org.jeecg.modules.base.entity.LineSideWarehouse; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 线边仓库信息 |
| | | * @Author: jeecg-boot |
| | |
| | | */ |
| | | public interface ILineSideWarehouseService extends IService<LineSideWarehouse> { |
| | | |
| | | /** |
| | | * 根据查询ID查询线边库 |
| | | * @param factoryId |
| | | * @return |
| | | */ |
| | | LineSideWarehouse queryByFactoryId(String factoryId); |
| | | |
| | | /** |
| | | * 根据产线类型查询线边库 |
| | | * @param productionType |
| | | * @return |
| | | */ |
| | | List<LineSideWarehouse> queryByProductionType(String productionType); |
| | | } |