| | |
| | | package com.zy.asrs.service; |
| | | |
| | | import com.zy.asrs.entity.param.EmptyPlateOutParam; |
| | | import com.zy.asrs.entity.param.FullStoreParam; |
| | | |
| | | public interface WorkService { |
| | | |
| | | /** |
| | | * 全板入库 |
| | | * @param param |
| | | * @return 库位号 |
| | | */ |
| | | void startupFullStore(FullStoreParam param); |
| | | String startupFullPutStore(FullStoreParam param, Long userId); |
| | | |
| | | /** |
| | | * 孔板入库 |
| | | * @return 库位号 |
| | | */ |
| | | String emptyPlateIn(Integer sourceStaNo, Long userId); |
| | | |
| | | /** |
| | | * 空板出库 |
| | | */ |
| | | void emptyPlateOut(EmptyPlateOutParam param, Long userId); |
| | | |
| | | |
| | | /** |
| | | * 手动完成工作档 |
| | | */ |
| | | void completeWrkMast(String workNo, Long userId); |
| | | |
| | | /** |
| | | * 手动取消工作档 |
| | | */ |
| | | void cancelWrkMast(String workNo, Long userId); |
| | | } |