ZengTao
2025-10-11 c542e5b9cf09e192d8a13cb955703857e9558ccc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.mes.hollow.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.glassinfo.entity.GlassInfo;
import com.mes.hollow.entity.HollowGlassRelationInfo;
import com.mes.hollow.entity.dto.LackDetailsDTO;
import org.apache.ibatis.annotations.Param;
import org.springframework.cache.annotation.Cacheable;
 
import java.util.List;
 
/**
 * (HollowGlassRelationInfo)表数据库访问层
 *
 * @author makejava
 * @since 2024-11-23 15:59:29
 */
public interface HollowGlassRelationInfoMapper extends BaseMapper<HollowGlassRelationInfo> {
 
 
    List<LackDetailsDTO> queryAllLackByFlowCard();
    
    List<LackDetailsDTO> queryLackByFlowCard();
 
    int queryLayerByFlowCardId(@Param("flowCardId") String flowCardId);
 
    void clearDirtyFlowCardData(@Param("flowCardId") String flowCardId, @Param("layer") int layer);
 
    List<LackDetailsDTO> queryLackByFlowCard(@Param("flowCardId")  String flowCardId);
 
    List<GlassInfo> queryLackGlassByFlowCard(@Param("flowCardId") String flowCardId, @Param("orderSort") Integer orderSort, @Param("layer") Integer layer);
}