10 lines
304 B
Java
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> {
|
|
}
|