严智鑫
2024-04-18 dc7f1d12fa03f487232a00d62cdbec42fdd39d5a
hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/taskcache/service/impl/TaskCacheServiceImpl.java
@@ -1,10 +1,17 @@
package com.mes.taskcache.service.impl;
import com.mes.taskcache.entity.TaskCache;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.mes.glassinfo.entity.GlassInfo;
import com.mes.glassinfo.mapper.GlassInfoMapper;
import com.mes.glassinfo.service.GlassInfoService;
import com.mes.taskcache.entity.TaskCache;
import com.mes.taskcache.mapper.TaskCacheMapper;
import com.mes.taskcache.service.TaskCacheService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
 * <p>
@@ -16,5 +23,38 @@
 */
@Service
public class TaskCacheServiceImpl extends ServiceImpl<TaskCacheMapper, TaskCache> implements TaskCacheService {
    //添加理片笼任务
    public boolean insertTaskCache(TaskCache taskCache){
        return this.save(taskCache);
    }
    //查询磨边任务
    public List<TaskCache> selectEdgInfo(String line){
    }
    //查询理片任务
    public List<TaskCache> selectCacheInfo(){
    }
    //查询全部任务
    public List<TaskCache> selectAll(){
    }
    //查询进片任务
    public List<TaskCache> selectInputTaskCache(){
    }
    //查询出片任务
    public List<TaskCache> selectOutTaskCache(){
    }
    //查询  A09  或 A10 最新的一片 出片任务
    public List<TaskCache> selectLastOutCacheInfo(String line){
    }
}