自动化立体仓库 - WCS系统
*
lsh
2025-04-18 25e6a77fdca15feccadb9d4ccf5baf83e1bfd62a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zy.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.system.entity.User;
import com.zy.system.mapper.UserMapper;
import com.zy.system.service.UserService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service("userService")
public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService {
    @Override
    public List<User> selectUserList(List<Long> leaderIdList, Integer curr, Integer limit){
        return this.baseMapper.selectUserList(leaderIdList,curr,limit);
    };
 
    @Override
    public Long selectUserListTotal(List<Long> leaderIdList){
        return this.baseMapper.selectUserListTotal(leaderIdList);
    };
 
}