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