|
@@ -2,6 +2,7 @@ package com.rongwei.bscommon.system.dao;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
import com.rongwei.bsentity.domain.StudyFileRecordDo;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
public interface StudyFileRecordDao extends BaseMapper<StudyFileRecordDo> {
|
|
|
/**
|
|
@@ -10,5 +11,5 @@ public interface StudyFileRecordDao extends BaseMapper<StudyFileRecordDo> {
|
|
|
* @param mainId 原主键
|
|
|
* @return 最新记录
|
|
|
*/
|
|
|
- StudyFileRecordDo selectLatestRecordByMainId(String mainId);
|
|
|
+ StudyFileRecordDo selectLatestRecordByMainId(@Param("mainId") String mainId);
|
|
|
}
|