| | |
| | | package com.zy.asrs.service; |
| | | |
| | | import com.zy.asrs.entity.WrkDetl; |
| | | import com.zy.asrs.entity.param.CombParam; |
| | | import com.zy.asrs.entity.param.MobileAdjustParam; |
| | | import com.zy.asrs.entity.param.ModifyPakoutParam; |
| | | import com.zy.asrs.entity.param.NodePakoutParam; |
| | | import com.zy.system.entity.User; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface MobileService { |
| | | |
| | |
| | | */ |
| | | void adjust(MobileAdjustParam param, Long userId); |
| | | |
| | | void packComb(CombParam param, Long userId); |
| | | |
| | | void nodePutway(String zpallet, String locNo, User user); |
| | | |
| | | void nodePakout(NodePakoutParam param, User user); |
| | | |
| | | void modifyWrkDetl(List<WrkDetl> wrkDetls, List<ModifyPakoutParam.CA> params, Long userId); |
| | | |
| | | void nodePakinNoComb(CombParam param); |
| | | } |