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
378 B
16 lines
378 B
package com.WR.StudentMS.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import com.WR.StudentMS.model.Coursemqsy;
|
|
|
|
public interface Coursemdaoqsy {
|
|
//查询所有课程数据
|
|
List<Coursemqsy> findAllqsy();
|
|
//创建课程信息
|
|
int createqsy(Coursemqsy coursem);
|
|
//删除用户课程信息
|
|
int removeqsy(Coursemqsy coursem);
|
|
Coursemqsy findByIdqsy(String courseid);
|
|
}
|