MedAbnormalInfoMapper.java 291 B

12345678910111213141516
  1. package com.diagbot.mapper;
  2. import com.diagbot.entity.MedAbnormalInfo;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. /**
  5. * <p>
  6. * Mapper 接口
  7. * </p>
  8. *
  9. * @author gaodm
  10. * @since 2020-06-24
  11. */
  12. public interface MedAbnormalInfoMapper extends BaseMapper<MedAbnormalInfo> {
  13. }