#
luxiaotao1123
2021-04-07 be51c67ce88a3b1fe0aee057f55883cb57b58be5
1
2
3
4
5
6
7
8
9
10
package zy.cloud.wms.system.service;
 
import com.baomidou.mybatisplus.service.IService;
import zy.cloud.wms.system.entity.Dept;
 
public interface DeptService extends IService<Dept> {
 
    int getMemberCount(Long deptId);
 
}