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.
manage/RecordTableService.java

25 lines
456 B

package com.milotnt.service;
import com.milotnt.pojo.RecordTable;
import java.util.List;
/**
* @author lhl
* @date 24/11
*/
public interface RecordTableService {
//查询所有课程
List<RecordTable> findAll(Integer ruser);
List<RecordTable> selectRecord(Integer recordId);
//根据id删除课程
Boolean deleteRecord(Integer recordId, Integer ruser);
//添加课程
Boolean insertRecord(RecordTable recordTable);
}