1234567891011121314151617181920 |
- package com.diagbot.service.impl;
- import com.diagbot.entity.QcCasesEntryPagedata;
- import com.diagbot.mapper.QcCasesEntryPagedataMapper;
- import com.diagbot.service.QcCasesEntryPagedataService;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 质控条目对应页面数据映射表 服务实现类
- * </p>
- *
- * @author gaodm
- * @since 2020-04-20
- */
- @Service
- public class QcCasesEntryPagedataServiceImpl extends ServiceImpl<QcCasesEntryPagedataMapper, QcCasesEntryPagedata> implements QcCasesEntryPagedataService {
- }
|