自动化立体仓库 - WMS系统
admin
2021-08-27 20369411f16253b8fb7dca2ae36016672559575d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.ints.mapper;
 
import com.zy.asrs.entity.LocDetl;
import com.zy.ints.entity.WaitMatin;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
@Mapper
@Repository
public interface WaitMatinMapper extends BaseMapper<WaitMatin> {
 
    List<WaitMatin> getHeadPage(Map<String, Object> map);
 
    Integer getHeadPageCount(Map<String, Object> map);
 
}