王佳豪
2021-06-19 6e781bc28dd55c4bb5c5652ead746d947b7aeafa
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);
}