|
@@ -103,8 +103,8 @@ public class SubjectController extends BaseController {
|
|
|
@ApiOperation(value = "获取子集科目列表按父Id")
|
|
|
@GetMapping("/findSubSubjects")
|
|
|
@PreAuthorize("@pcs.hasPermissions('subject/findSubSubjects')")
|
|
|
- public HttpResponseResult<List<Subject>> findSubSubjects(Integer parentSubjectId){
|
|
|
- return succeed(subjectService.findSubSubjects(parentSubjectId));
|
|
|
+ public HttpResponseResult<List<Subject>> findSubSubjects(Integer parentSubjectId,Boolean cbsFlag){
|
|
|
+ return succeed(subjectService.findSubSubjects(parentSubjectId,cbsFlag));
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "搜索按Id和名称")
|