Files
nuttyreading-java/src/main/java/com/peanut/modules/common/dao/MedicaldesInheritRelationDao.java
wangjinlei 3cef570c97 1
2024-03-15 10:19:03 +08:00

10 lines
308 B
Java

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