You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package service;
|
|
|
|
|
|
import domain.Admin;
|
|
import domain.CDC;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 学院专业班级的业务接口-
|
|
*/
|
|
public interface CDCService {
|
|
List<CDC> findAllCollege();
|
|
|
|
List<CDC> findAllDepartment();
|
|
|
|
List<CDC> findAllClass();
|
|
|
|
List<CDC> findAll();
|
|
}
|