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.
32 lines
633 B
32 lines
633 B
package com.milotnt.mapper;
|
|
|
|
import com.milotnt.pojo.RealRecord;
|
|
import com.milotnt.pojo.TargetRecord;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author lhl
|
|
* @date 24/11
|
|
*/
|
|
|
|
@Mapper
|
|
public interface RealRecordMapper {
|
|
|
|
//查询所有课程
|
|
List<RealRecord> findAll(Integer ruser);
|
|
|
|
//根据id删除课程
|
|
Boolean deleteRealRecord(String rDate);
|
|
|
|
//添加课程
|
|
Boolean insertRealRecord(RealRecord realRecord);
|
|
|
|
List<RealRecord> selectRealRecord(String rDate);
|
|
|
|
List<RealRecord> findLatestRealRecord();
|
|
|
|
List<RealRecord> findLatestRealRecord(Integer ruser);
|
|
}
|