#
Junjie
2024-09-07 8eba3203511d8edbc5ee04aa82eceeaa3e38f889
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.asrs.wms.asrs.mapper;
 
import com.zy.asrs.wms.asrs.entity.LocDetl;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.executor.Executor;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.plugin.Intercepts;
import org.apache.ibatis.plugin.Signature;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
public interface LocDetlMapper extends BaseMapper<LocDetl> {
 
    List<LocDetl> getList(String matnr, String batch, List<Long> ids);
 
 
    List<LocDetl> getStock(String matnr, String batch, List<Long> ids);
}