fix: 班级学生查询改sql方式放入应用申请部分

This commit is contained in:
TsMask
2024-07-17 16:47:03 +08:00
parent 5c0328c142
commit 60ea5ee87d
6 changed files with 49 additions and 65 deletions

View File

@@ -65,3 +65,8 @@ func (r *PtNeConfigApplyService) DeleteByIds(paramIds []string) (int64, error) {
// 删除信息失败!
return 0, fmt.Errorf("delete fail")
}
// SelectListByClass 查询班级学生信息
func (r *PtNeConfigApplyService) SelectListByClass(deptId, userName string) []map[string]any {
return r.ptNeConfigApplyRepository.SelectListByClass(deptId, userName)
}