package org.jeecg.modules.eam.service.impl;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import org.jeecg.modules.eam.entity.SpecialtyInspectionPlanDetail;
|
import org.jeecg.modules.eam.mapper.SpecialtyInspectionPlanDetailMapper;
|
import org.jeecg.modules.eam.service.ISpecialtyInspectionPlanDetailService;
|
import org.springframework.stereotype.Service;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @Description: mom_eam_specialty_inspection_plan_detail
|
* @Author: jeecg-boot
|
* @Date: 2023-04-19
|
* @Version: V1.0
|
*/
|
@Service
|
public class SpecialtyInspectionPlanDetailServiceImpl extends ServiceImpl<SpecialtyInspectionPlanDetailMapper, SpecialtyInspectionPlanDetail> implements ISpecialtyInspectionPlanDetailService {
|
|
@Override
|
public List<Map<String, Object>> getSpecialtyInspectionPlanDetailList(String specialtyInspectionPlanId) {
|
return super.baseMapper.getSpecialtyInspectionPlanDetailList(specialtyInspectionPlanId);
|
}
|
|
@Override
|
public IPage<Map<String, Object>> getSpecialtyInspectionPlanDetailById(Integer pageNo, Integer pageSize, Map<String, Object> params) {
|
IPage<Map> page = new Page<Map>(pageNo, pageSize);
|
return super.baseMapper.getSpecialtyInspectionPlanDetailById(page,params);
|
}
|
}
|