#
18516761980
2022-09-01 3e8b02f468f302763c3792efa3f9164dae3e0874
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.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.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
@Mapper
@Repository
public interface OutStockDanMapper extends BaseMapper<OutStockBillEntry> {
 
    List<OutStockBillEntry> queryOutStock(Map<String, Object> map);
 
    Integer queryOutStockCount(Map<String, Object> map);
 
    List<LocDetl> queryMatWithLoc(String matnr,@Param("mnemonic") String mnemonic);
 
    List<OutStockBillEntry> queryMatnrWithBillNo(@Param("FBillNo") String fbillNo);
 
    Integer queryOutStockFInterID(String supplier);
}