#
luxiaotao1123
2022-03-01 3ffd353a51c0daff3c7cc44ff6d0ad1045cc83c5
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);
 
}