医案管理

This commit is contained in:
wuchunlei
2023-11-24 10:32:38 +08:00
parent 9687a73269
commit eee5f460f2
6 changed files with 208 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.book.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.book.entity.BookMedicalRecordsEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface BookMedicalRecordsDao extends MPJBaseMapper<BookMedicalRecordsEntity> {
}