From 9ccdf529fcc03b32ec1656c3b668b8bddd43ea5f Mon Sep 17 00:00:00 2001 From: wang <3597712270@qq.com> Date: 星期三, 24 四月 2024 18:54:38 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/HangZhouMes --- hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downstorage/service/DownStorageCageService.java | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downstorage/service/DownStorageCageService.java b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downstorage/service/DownStorageCageService.java new file mode 100644 index 0000000..dc1627f --- /dev/null +++ b/hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downstorage/service/DownStorageCageService.java @@ -0,0 +1,35 @@ +package com.mes.downstorage.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.github.yulichang.base.MPJBaseService; +import com.mes.downstorage.entity.DownStorageCage; +import com.mes.downstorage.entity.DownStorageCageDetails; + +import java.util.List; +import java.util.Map; + +/** + * <p> + * 鏈嶅姟绫� + * </p> + * + * @author zhoush + * @since 2024-03-27 + */ +public interface DownStorageCageService extends MPJBaseService<DownStorageCage> { + public List<Map> gettask(); + + // List<Map<String, Object>> selectCacheLeisure(); + List<DownStorageCageDetails> getCacheLeisure(); + List<DownStorageCageDetails> getCacheOut(int start, int end); + List<Map> getCacheInfo(); + List<DownStorageCageDetails> getIsExistIntoCacheByLayoutAndSequence(Integer tempering_layout_id, Integer tempering_feed_sequence, double width); + List<DownStorageCageDetails> getIsExistIntoCacheByLayout(Integer tempering_layout_id, double width); + List<DownStorageCageDetails> getIsExistIntoCacheByflowcardid(String flowcardid, double width); + List<DownStorageCageDetails> IsExistIntoCacheByflowcardid(String flowcardid, double width); + List<Map> selectCacheEmpty(); + boolean processInto(String Number); + boolean processOut(); + + +} -- Gitblit v1.8.0