package com.gkhy.exam.system.service; import com.gkhy.exam.common.api.CommonPage; import com.gkhy.exam.common.api.CommonResult; import com.gkhy.exam.system.domain.AnnualMaintenanceEvaluate; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.exam.system.domain.AnnualMaintenanceRecord; /** *

* 设备完好评价记录及完整率统计 服务类 *

* * @author hh * @since 2025-07-31 16:12:02 */ public interface AnnualMaintenanceEvaluateService extends IService { CommonPage selectAnnualMaintenanceEvaluateList(AnnualMaintenanceEvaluate annualMaintenanceEvaluate); CommonResult saveAnnualMaintenanceEvaluate(AnnualMaintenanceEvaluate annualMaintenanceEvaluate); CommonResult getAnnualMaintenanceEvaluate(Integer id); CommonResult deletedAnnualMaintenanceEvaluate(Integer id); }