| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.mes.bigstorage.entity.BigStorageCageDetails; |
| | | import com.mes.bigstorage.mapper.BigStorageCageMapper; |
| | | import com.mes.bigstorage.entity.BigStorageDTO; |
| | | import com.mes.bigstorage.entity.dto.SlotSequenceDTO; |
| | | import com.mes.bigstorage.entity.dto.TemperingLayoutDTO; |
| | | import com.mes.glassinfo.entity.GlassInfo; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | public interface BigStorageCageDetailsService extends IService<BigStorageCageDetails> { |
| | | |
| | | public boolean getTemperingGlass(); |
| | | List<BigStorageCageDetails> selectTask(int taskType); |
| | | |
| | | double selectGetBoard(String plcFeedReqLine); |
| | | |
| | | void deleteBigStorageCageDetails(BigStorageCageDetails bigStorageCageDetails); |
| | | |
| | | void damageBigStorageCageDetails(String glassId,int status); |
| | | |
| | | BigStorageCageDetails selectBigStorageCageDetails(String glassId); |
| | | |
| | | void insertBigStorageCageDetails(BigStorageCageDetails bigStorageCageDetails); |
| | | |
| | | void finishBigStorageCageDetails(BigStorageCageDetails bigStorageCageDetails); |
| | | |
| | | void outBigStorageCageDetails(BigStorageCageDetails bigStorageCageDetails); |
| | | |
| | | /** |
| | | * 按照版图信息获取进片笼子信息 |
| | | * |
| | | * @param glassInfo |
| | | */ |
| | | BigStorageDTO queryTargetSlotByTempering(GlassInfo glassInfo); |
| | | |
| | | /** |
| | | * 获取钢化版图已经到齐的工程号及版图id |
| | | * |
| | | * @return |
| | | */ |
| | | TemperingLayoutDTO temperingIsAll(); |
| | | |
| | | /** |
| | | * 获取每个钢化版图占用的格子数量 |
| | | * |
| | | * @return |
| | | */ |
| | | TemperingLayoutDTO queryTemperingOccupySlot(); |
| | | |
| | | /** |
| | | * 获取版图每个格子的最大最小序号 |
| | | * |
| | | * @param engineerId |
| | | * @param temperingLayoutId |
| | | * @return |
| | | */ |
| | | List<SlotSequenceDTO> queryGlassMaxAndMin(String engineerId, Integer temperingLayoutId); |
| | | } |