ZengTao
2024-04-29 91e4ba507f9806c975a4273154d79f1a43b836c4
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
37
38
39
40
41
42
43
package com.mes.edgstoragecage.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.github.yulichang.base.MPJBaseService;
import com.mes.edgstoragecage.entity.EdgStorageCageDetails;
import com.mes.pp.entity.OptimizeDetail;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author zhoush
 * @since 2024-04-07
 */
public interface EdgStorageCageDetailsService extends MPJBaseService<EdgStorageCageDetails> {
 
    /**
     * 识别 破损/拿走
     * @param glassId
     * @param ControlsId
     * @return
     */
    boolean identWorn(String glassId,int ControlsId);
 
    /**
     * 获取 切割当前版图
     * @return
     */
    List<Map<String, Object>> selectCutTerritory();
 
    /**
     * 获取 工程下的当前版图
     * @param current
     * @return
     */
    List<Map<String, Object>> selectCurrentCutTerritory(String current);
 
 
}