自动化立体仓库 - WMS系统
#
zyx
2024-04-15 0c0cd17fb9162c0c949c354adcd422d605aad7b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.OrderDetl;
import com.zy.asrs.entity.Pla;
import com.zy.asrs.entity.PlaQty;
import com.zy.system.entity.User;
 
import java.util.List;
 
public interface PlaService extends IService<Pla> {
 
    Pla selectByBatchAndPackageNo(String batch, Integer packageNo, String brand);
 
    void queryStock(OrderDetl orderDetl, List<PlaQty> plaQties);
 
    void returned(List<PlaQty> plaQties, User user);
 
    void viladate(List<Pla> plas, User user);
 
    List<Pla> selectToHistory();
 
    public Page<Pla> getStockStatisAll(Page<Pla> page);
}