Files
nuttyreading-java/src/main/java/com/peanut/modules/book/dao/MedicaldesInheritRelationDao.java
2024-01-02 16:07:17 +08:00

10 lines
304 B
Java

package com.peanut.modules.book.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.book.entity.MedicaldesInheritRelation;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface MedicaldesInheritRelationDao extends MPJBaseMapper<MedicaldesInheritRelation> {
}