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.
16 lines
360 B
16 lines
360 B
package service;
|
|
|
|
import domain.SelectCourse;
|
|
|
|
import java.util.List;
|
|
/**
|
|
* 选课服务接口
|
|
*/
|
|
public interface SelectCourseService {
|
|
List<SelectCourse> findStudentSelectedCourseByCourseId(String cid);
|
|
|
|
SelectCourse findScoreByCourseIdAndStudentId(String cid,String sid);
|
|
|
|
void upDateScoreByCidAndSid(String cid, String sid, String sScore);
|
|
}
|