package org.jeecg.modules.eam.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.jeecg.modules.eam.entity.DailyInspectionStandard;
|
import org.jeecg.modules.eam.entity.SpecialtyInspectionStandard;
|
|
import java.util.Map;
|
|
/**
|
* @Description: mom_eam_daily_inspection_standard
|
* @Author: jeecg-boot
|
* @Date: 2023-03-10
|
* @Version: V1.0
|
*/
|
public interface ISpecialtyInspectionStandardService extends IService<SpecialtyInspectionStandard> {
|
|
IPage<Map<String, Object>> getInspectionStandardList(Integer pageNo, Integer pageSize, Map<String, Object> params);
|
}
|