对比新文件 |
| | |
| | | package com.yuanchu.limslaboratory.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.limslaboratory.pojo.CnasSatisfactionSurvey; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * @Author 寮犲 |
| | | * @Date 2023/8/10 |
| | | */ |
| | | @Repository |
| | | public interface CnasSatisfactionSurveyMapper extends BaseMapper<CnasSatisfactionSurvey> { |
| | | |
| | | IPage<CnasSatisfactionSurvey>selectCnasSatisfactionSurvey(Page<CnasSatisfactionSurvey>page, String surveyDate,String entryDate); |
| | | } |