feat: 产线负载接口

This commit is contained in:
JR
2025-07-30 16:42:34 +08:00
parent d699efca54
commit b74c977c60
5 changed files with 97 additions and 1 deletions

View File

@@ -2,7 +2,11 @@ package com.klp.mapper;
import com.klp.domain.WmsProductionLine;
import com.klp.domain.vo.WmsProductionLineVo;
import com.klp.domain.vo.LineLoadInfo;
import com.klp.common.core.mapper.BaseMapperPlus;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 产线Mapper接口
@@ -12,4 +16,8 @@ import com.klp.common.core.mapper.BaseMapperPlus;
*/
public interface WmsProductionLineMapper extends BaseMapperPlus<WmsProductionLineMapper, WmsProductionLine, WmsProductionLineVo> {
/**
* 批量查询产线负载信息
*/
List<LineLoadInfo> selectLineLoadInfo(@Param("lineIds") List<Long> lineIds);
}