QcCasesEntryPagedataServiceImpl.java 600 B

1234567891011121314151617181920
  1. package com.diagbot.service.impl;
  2. import com.diagbot.entity.QcCasesEntryPagedata;
  3. import com.diagbot.mapper.QcCasesEntryPagedataMapper;
  4. import com.diagbot.service.QcCasesEntryPagedataService;
  5. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * <p>
  9. * 质控条目对应页面数据映射表 服务实现类
  10. * </p>
  11. *
  12. * @author gaodm
  13. * @since 2020-04-20
  14. */
  15. @Service
  16. public class QcCasesEntryPagedataServiceImpl extends ServiceImpl<QcCasesEntryPagedataMapper, QcCasesEntryPagedata> implements QcCasesEntryPagedataService {
  17. }