Delete 'demo6_src/com/system/dao/CourseDao.java'

nxist2202005002 2 years ago
parent 15aee1883f
commit ca69ecee4d

@ -1,15 +0,0 @@
package com.system.dao;
import java.sql.SQLException;
import java.util.List;
import com.system.entity.Course;
public interface CourseDao {
public Course selectByCno(int cno) throws SQLException;
public List<Course> courseRes() throws Exception;
public boolean insert(String cno, String cname, String ccredit, String ctime) throws SQLException;
public boolean delete(String cno) throws SQLException;
public Course select(String cno) throws SQLException;
public boolean update(String cno, String cname, String ccredit, String ctime) throws SQLException;
}
Loading…
Cancel
Save