1234567891011121314151617 |
- package com.huimv.management.dao;
- import com.huimv.management.entity.HealthDiseaseEntity;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- *
- *
- * @author yinhao
- * @email yinhao@163.com
- * @date 2021-06-10 09:44:06
- */
- @Mapper
- public interface HealthDiseaseDao extends BaseMapper<HealthDiseaseEntity> {
-
- }
|