自动化立体仓库 - WMS系统
pang.jiabao
7 天以前 93c73e8c232639d9e10afb7de07453974f9587e0
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
26
27
28
29
30
31
32
33
34
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.LocCheck;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.LocOwner;
import com.zy.asrs.entity.ManLocDetl;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
public interface LocCheckMapper extends BaseMapper<LocCheck> {
 
    List<ManLocDetl> getAutoLocDetl();
 
    List<ManLocDetl> getCountLocDetl(@Param("count") int count);
 
    List<ManLocDetl> getMatnrCountLocDetl(@Param("count") int count,@Param("matnr") String matnr);
 
    List<ManLocDetl> getLocCountLocDetl(@Param("count") int count,@Param("loc_no") String locno);
 
    @Delete("DELETE FROM man_loc_check")
    boolean deleteAll();
 
    List<String> getLocCount();
 
    List<LocOwner> getOwnerCount();
 
    List<ManLocDetl> getOwnerCountLocDetl(int count, String owner);
}