package org.jeecg.modules.eam.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import org.jeecg.modules.eam.entity.SpecialtyInspectionPlanDetail;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
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
|
*/
|
public interface ISpecialtyInspectionPlanDetailService extends IService<SpecialtyInspectionPlanDetail> {
|
|
List<Map<String, Object>> getSpecialtyInspectionPlanDetailList(String specialtyInspectionPlanId);
|
|
IPage<Map<String, Object>> getSpecialtyInspectionPlanDetailById(Integer pageNo, Integer pageSize, Map<String, Object> params);
|
}
|