mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-25 12:22:03 +08:00
部门列表api返回部门的学员数量
This commit is contained in:
@@ -9,6 +9,9 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import xyz.playedu.api.domain.Department;
|
||||
import xyz.playedu.api.types.mapper.DepartmentsUserCountMapRes;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author tengteng
|
||||
@@ -16,4 +19,6 @@ import xyz.playedu.api.domain.Department;
|
||||
* @createDate 2023-02-19 12:19:45 @Entity xyz.playedu.api.domain.Department
|
||||
*/
|
||||
@Mapper
|
||||
public interface DepartmentMapper extends BaseMapper<Department> {}
|
||||
public interface DepartmentMapper extends BaseMapper<Department> {
|
||||
List<DepartmentsUserCountMapRes> getDepartmentsUserCount();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user