医案推荐图书

This commit is contained in:
wuchunlei
2023-11-27 10:36:22 +08:00
parent d33f24113c
commit 959277de6f
5 changed files with 69 additions and 1 deletions

View File

@@ -1,9 +1,18 @@
package com.peanut.modules.book.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.book.entity.BookEntity;
import com.peanut.modules.book.entity.BookMedicalRecordsEntity;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
import java.util.Map;
@Mapper
public interface BookMedicalRecordsDao extends MPJBaseMapper<BookMedicalRecordsEntity> {
List<BookEntity> getBooks(Integer userId);
}