方剂增加药

穴位增加脉络
This commit is contained in:
wuchunlei
2024-01-17 15:12:28 +08:00
parent ca136ec6a6
commit b3bef83b95
14 changed files with 458 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.MedicinalDrug;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface MedicinalDrugDao extends MPJBaseMapper<MedicinalDrug> {
}

View File

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

View File

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