| | |
| | | |
| | | import com.zy.asrs.entity.LocCheck; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.zy.asrs.entity.LocOwner; |
| | | import com.zy.asrs.entity.ManLocDetl; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface LocCheckService extends IService<LocCheck> { |
| | | |
| | | void autoCreatePick(String prec); |
| | | List<ManLocDetl> autoCreatePick(); |
| | | |
| | | List<ManLocDetl> getCountLocDetl(int count); |
| | | |
| | | List<ManLocDetl> getMatnrCountLocDetl(int count,String matnr); |
| | | |
| | | List<ManLocDetl> getLocCountLocDetl(int count,String locno); |
| | | |
| | | List<ManLocDetl> getOwnerCountLocDetl(int count,String owner); |
| | | |
| | | boolean deleteAll(); |
| | | |
| | | List<String> getLocCount(); |
| | | List<LocOwner> getOwnerCount(); |
| | | } |