new prescript

This commit is contained in:
wangjinlei
2023-12-13 17:24:20 +08:00
parent 0376420aca
commit 75fb345328
8 changed files with 122 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.PrescriptCategoryEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface PrescriptCategoryDao extends MPJBaseMapper<PrescriptCategoryEntity> {
}

View File

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