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 { List queryFlowCardIdMaxLayerGlassInfo(@Param("flowCardId") String flowCardId, @Param("totalLayer") int totalLayer); List queryFlowCardIdLayerGlassInfo(@Param("flowCardId") String flowCardId, @Param("totalLayer") int totalLayer, @Param("layer") int layer); List queryLackByFlowCard(String flowCardId, int layer); }