| | |
| | | package com.mes.rawglassstation.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.mes.rawglassdetails.entity.RawGlassStorageDetails; |
| | | import com.mes.rawglassstation.entity.RawGlassStorageStation; |
| | | import com.mes.rawglasstask.entity.RawGlassStorageTask; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | boolean insertRawGlassStorageStation(RawGlassStorageStation rw); |
| | | |
| | | List<RawGlassStorageTask> listRawGlassDetails(); |
| | | /** |
| | | * 获取工位及对应的原片信息 |
| | | * |
| | | * @return |
| | | */ |
| | | List<RawGlassStorageDetails> listRawGlassDetails(); |
| | | |
| | | boolean updateSlotState(Integer slot, Integer enableState); |
| | | } |