feat: 产线负载接口
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user