package org.jeecg.modules.eam.service.impl; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.jeecg.modules.eam.entity.DailyInspectionStandard; import org.jeecg.modules.eam.entity.SpecialtyInspectionStandard; import org.jeecg.modules.eam.mapper.DailyInspectionStandardMapper; import org.jeecg.modules.eam.mapper.SpecialtyInspectionStandardMapper; import org.jeecg.modules.eam.service.IDailyInspectionStandardService; import org.jeecg.modules.eam.service.ISpecialtyInspectionStandardService; import org.springframework.stereotype.Service; import java.util.Map; /** * @Description: mom_eam_specialty_inspection_standard * @Author: jeecg-boot * @Date: 2023-03-10 * @Version: V1.0 */ @Service public class SpecialtyInspectionStandardServiceImpl extends ServiceImpl implements ISpecialtyInspectionStandardService { @Override public IPage> getInspectionStandardList(Integer pageNo, Integer pageSize, Map params) { IPage pageData = new Page(pageNo, pageSize); String num=String.valueOf(params.get("num")) ; String name=String.valueOf(params.get("name")) ; String versionStatus = String.valueOf(params.get("versionStatus")); return super.baseMapper.getInspectionStandardList(pageData,num,name,versionStatus); } }