New file |
| | |
| | | package com.mes.downglassinfo.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.mes.downglassinfo.entity.DownGlassInfo; |
| | | import com.mes.downworkstation.entity.dto.DownGlassInfoDTO; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface DownGlassInfoService extends IService<DownGlassInfo> { |
| | | |
| | | |
| | | /** |
| | | * @param flowCardId |
| | | * @return // 根据流程卡号查询最大序号 |
| | | */ |
| | | Integer getMaxSequenceByFlowCardId(String flowCardId); |
| | | |
| | | /** |
| | | * @param downGlassInfo 插入下片信息 |
| | | */ |
| | | void insertDownGlassInfo(DownGlassInfo downGlassInfo); |
| | | |
| | | |
| | | DownGlassInfoDTO queryDownGlassMaxLayer(String flowCardId); |
| | | |
| | | Integer queryMaxSequence(String flowCardId, int layer); |
| | | |
| | | List<DownGlassInfoDTO> queryWorkStationNotIn(); |
| | | } |