王佳豪
2021-06-09 65c2069cc4f4009c959236e515d3f82a1928840c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.zy.asrs.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.LocDetl;
import com.zy.common.service.erp.entity.OutStockBillEntry;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
@Mapper
@Repository
public interface OutStockMapper extends BaseMapper<OutStockBillEntry> {
    List<OutStockBillEntry> queryOutStock(Map<String, Object> map);
 
    Integer queryOutStockCount(Map<String, Object> map);
 
    List<LocDetl> queryMatWithLoc(String matnr);
 
    List<OutStockBillEntry> queryMatnrWithBillNo(String fbillNo);
 
    Integer queryOutStockFInterID(String supplier);
}