王佳豪
2021-05-17 757c62a51677d67a389690ee6a3131215dc8729e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.asrs.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.common.service.erp.entity.OutStockBill;
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 OutStockMainMapper extends BaseMapper<OutStockBill> {
    List<OutStockBill> queryOutStockMain(@Param("FBrNo") String FBrNo, @Param("FInterID") Integer FInterID);
}