#
whycq
2022-02-08 822e2c1494257c362b11b6507b6de0bb7f9de964
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package zy.cloud.wms.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import zy.cloud.wms.system.entity.Dept;
import zy.cloud.wms.system.mapper.DeptMapper;
import zy.cloud.wms.system.service.DeptService;
import zy.cloud.wms.system.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
@Service("deptService")
public class DeptServiceImpl extends ServiceImpl<DeptMapper, Dept> implements DeptService {
 
    @Autowired
    private UserService userService;
 
    @Override
    public int getMemberCount(Long deptId) {
        Dept dept = selectById(deptId);
        return 0;
    }
}