#
luxiaotao1123
2022-03-02 aaf2e5aed7df2d082935cf91a538a037557c368e
1
2
3
4
5
6
7
8
9
10
package com.zy.sc.system.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.sc.system.entity.Dept;
 
public interface DeptService extends IService<Dept> {
 
    int getMemberCount(Long deptId);
 
}