package com.mes.hollow.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.mes.hollow.entity.HollowGlassRelationInfo;
|
import com.mes.hollow.entity.dto.HollowGlassDetailsDTO;
|
import com.mes.hollow.entity.dto.LackDetailsDTO;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* (HollowGlassRelationInfo)表数据库访问层
|
*
|
* @author makejava
|
* @since 2024-11-23 15:59:29
|
*/
|
public interface HollowGlassRelationInfoMapper extends BaseMapper<HollowGlassRelationInfo> {
|
|
|
List<HollowGlassDetailsDTO> queryFlowCardIdMaxLayerGlassInfo(@Param("flowCardId") String flowCardId, @Param("totalLayer") int totalLayer);
|
|
|
List<HollowGlassDetailsDTO> queryFlowCardIdLayerGlassInfo(@Param("flowCardId") String flowCardId, @Param("totalLayer") int totalLayer, @Param("layer") int layer);
|
|
List<LackDetailsDTO> queryLackByFlowCard(String flowCardId, int layer);
|
}
|