| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.core.toolkit.Constants; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.eam.dto.EamReportThreeNoSpareDto; |
| | | import org.jeecg.modules.eam.entity.EamReportThreeNoSpare; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.jeecg.modules.eam.request.EamReportThreeNoSpareQuery; |
| | | |
| | | /** |
| | | * @Description: “三不放过的原则”分析表 |
| | |
| | | */ |
| | | public interface EamReportThreeNoSpareMapper extends BaseMapper<EamReportThreeNoSpare> { |
| | | |
| | | IPage<EamReportThreeNoSpareQuery> queryPageList(IPage<EamReportThreeNoSpareQuery> page, @Param(Constants.WRAPPER) QueryWrapper<EamReportThreeNoSpareQuery> EamReportThreeNoSpareQuery); |
| | | |
| | | /** |
| | | * “三不放过的原则”分析表列表 |
| | | * @param eamReportThreeNoSpareDto |
| | | * @return |
| | | */ |
| | | List<EamReportThreeNoSpareDto> queryList(@Param(Constants.WRAPPER) QueryWrapper<EamReportThreeNoSpareDto> eamReportThreeNoSpareDto); |
| | | } |