#
tqs
2023-12-05 a0b733a8b19b1db43395a96408098596ac3d2a86
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;
    }
}