1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.zy.asrs.service;
|
| import com.zy.asrs.entity.param.EmptyPlateOutParam;
| import com.zy.asrs.entity.param.FullStoreParam;
|
| public interface WorkService {
|
| /**
| * 全板入库
| */
| void startupFullStore(FullStoreParam param, Long userId);
|
| /**
| * 空板出库
| */
| void emptyPlateOut(EmptyPlateOutParam param, Long userId);
|
| }
|
|