wang
2024-04-19 44051709072ff59407c9ce4592abe15d76c6128d
hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgstoragecage/service/EdgStorageCageDetailsService.java
@@ -1,6 +1,7 @@
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 java.util.List;
@@ -14,14 +15,19 @@
 * @author zhoush
 * @since 2024-04-07
 */
public interface EdgStorageCageDetailsService extends IService<EdgStorageCageDetails> {
public interface EdgStorageCageDetailsService extends MPJBaseService<EdgStorageCageDetails> {
    //识别 破损/拿走
    public boolean identWorn(String glassid,int ControlsId);
    /**
     * 识别 破损/拿走
     * @param glassid
     * @param ControlsId
     * @return
     */
    boolean identWorn(String glassid,int ControlsId);
    //获取 切割当前版图
    public List<Map> selectCutTerritory();
    List<Map> selectCutTerritory();
    //获取 工程下的当前版图
    public List<Map> selectCurrentCutTerritory(String current);
    List<Map> selectCurrentCutTerritory(String current);
}