wangfei
2024-12-12 425e9e1f5413fdd46368e5486d582a25473f7476
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
33
34
35
36
package com.mes.hollow.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.hollow.entity.HollowGlassRelationInfo;
import com.mes.hollow.entity.dto.FlowCardGlassInfoDTO;
import com.mes.hollow.entity.dto.HollowBigStorageDTO;
import com.mes.hollow.entity.dto.LackDetailsDTO;
 
import java.util.List;
import java.util.Map;
 
/**
 * (HollowGlassRelationInfo)表服务接口
 *
 * @author makejava
 * @since 2024-11-23 15:59:30
 */
public interface HollowGlassRelationInfoService extends IService<HollowGlassRelationInfo> {
    /**
     * 按照玻璃id获取中空目标格子
     *
     * @return
     */
    HollowBigStorageDTO queryHollowTargetSlot(String flowCardId, double width, double height, int totalLayer, int layer);
 
    /**
     * 生成中空玻璃信息
     */
    void generateHollowGlassInfo(String flowCardId, int totalLayer, int layer);
 
    Map<String, List<FlowCardGlassInfoDTO>> queryHollowAllFlowCard();
 
    //    Map<Integer, List<LackDetailsDTO>>  queryLackByFlowCard(String flowCardId);
    List<LackDetailsDTO> queryLackByFlowCard(String flowCardId);
 
}