MedClickInfoMapper.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.diagbot.mapper;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.diagbot.dto.EntryDefectImprove;
  4. import com.diagbot.dto.EntryDefectImproveInner;
  5. import com.diagbot.dto.EntryDefectImproveInnerExport;
  6. import com.diagbot.dto.ExportExcelDTO;
  7. import com.diagbot.dto.GetEntryInfoDTO;
  8. import com.diagbot.dto.GetQcClickDTO;
  9. import com.diagbot.dto.GetQcClickInnerPageDTO;
  10. import com.diagbot.entity.MedClickInfo;
  11. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  12. import com.diagbot.vo.GetEntryDefectImproveDeptVO;
  13. import com.diagbot.vo.GetEntryDefectImproveInnerVO;
  14. import com.diagbot.vo.GetEntryDefectImproveVO;
  15. import com.diagbot.vo.GetQcClickInnerPageVO;
  16. import com.diagbot.vo.GetQcClickVO;
  17. import java.util.List;
  18. /**
  19. * <p>
  20. * 医生点击质控病历次数基本表 Mapper 接口
  21. * </p>
  22. *
  23. * @author cy
  24. * @since 2021-11-10
  25. */
  26. public interface MedClickInfoMapper extends BaseMapper<MedClickInfo> {
  27. public List<GetQcClickDTO> getQcClick(GetQcClickVO getQcClickVO);
  28. public IPage<GetQcClickInnerPageDTO> getQcClickInnerPage(GetQcClickInnerPageVO getQcClickInnerPageVO);
  29. public List<EntryDefectImprove> getEntryDefectImprove(GetEntryDefectImproveVO getEntryDefectImproveVO);
  30. public List<GetEntryInfoDTO> getEntryInfo();
  31. public List<EntryDefectImproveInnerExport> getEntryDefectImproveDept(GetEntryDefectImproveDeptVO getEntryDefectImproveDeptVO);
  32. public List<EntryDefectImproveInner> getEntryDefectImproveInner(GetEntryDefectImproveInnerVO getEntryDefectImproveInnerVO);
  33. public List<ExportExcelDTO> getDefectImproveInnerByExport(GetEntryDefectImproveInnerVO getEntryDefectImproveInnerVO);
  34. }