|
|
@@ -1,10 +1,7 @@
|
|
|
package org.ruoyi.mapper;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
-import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
-import org.apache.ibatis.annotations.Select;
|
|
|
-import org.apache.ibatis.annotations.Update;
|
|
|
import org.ruoyi.core.mapper.BaseMapperPlus;
|
|
|
import org.ruoyi.domain.PatientRecord;
|
|
|
|
|
|
@@ -12,6 +9,7 @@ import org.ruoyi.domain.PatientRecord;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
+@Mapper
|
|
|
public interface PatientRecordMapper extends BaseMapperPlus<PatientRecord, PatientRecord> {
|
|
|
|
|
|
boolean insertBatchSomeColumn(@Param("records") List<PatientRecord> records);
|