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.gkhy.exam.system.domain.AnnualMaintenanceService; import com.baomidou.mybatisplus.extension.service.IService; /** *

* 年度基础设施维护保养表 服务类 *

* * @author hh * @since 2025-07-31 16:12:02 */ public interface AnnualMaintenanceServiceService extends IService { CommonPage selectAnnualMaintenanceServiceList(AnnualMaintenanceService annualMaintenanceService); CommonResult saveAnnualMaintenanceService(AnnualMaintenanceService annualMaintenanceService); CommonResult getAnnualMaintenanceService(Integer id); CommonResult deletedAnnualMaintenanceService(Integer id); }