package org.jeecg.modules.eam.service; import org.jeecg.modules.eam.entity.InspectionOrderDetail; import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.eam.model.InspectionCycleVo; import org.jeecg.modules.eam.model.TreatmentMeasureVo; import java.util.List; /** * @Description: mom_eam_inspection_order_detail * @Author: jeecg-boot * @Date: 2023-04-11 * @Version: V1.0 */ public interface IInspectionOrderDetailService extends IService { List getTreatmentMeasure(); }