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.
27 lines
517 B
27 lines
517 B
package com.milotnt.service;
|
|
|
|
import com.milotnt.pojo.RealRecord;
|
|
import com.milotnt.pojo.TargetRecord;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author lhl
|
|
* @date 24/11
|
|
*/
|
|
|
|
public interface RealRecordService {
|
|
|
|
//查询所有课程
|
|
List<RealRecord> findAll(Integer ruser);
|
|
|
|
List<RealRecord> selectRealRecord(String rDate);
|
|
|
|
//根据id删除课程
|
|
Boolean deleteRealRecord(String rDate);
|
|
|
|
Boolean insertRealRecord(RealRecord realRecord);
|
|
|
|
List<RealRecord> findLatestRealRecord(Integer ruser);
|
|
}
|