heheng
昨天 75960d6e223f8cab9ceb489f6b89f5f08c6db62a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
 
/**
 * <p>
 * 年度基础设施维护保养表     服务类
 * </p>
 *
 * @author hh
 * @since 2025-07-31 16:12:02
 */
public interface AnnualMaintenanceServiceService extends IService<AnnualMaintenanceService> {
    CommonPage selectAnnualMaintenanceServiceList(AnnualMaintenanceService annualMaintenanceService);
 
    CommonResult saveAnnualMaintenanceService(AnnualMaintenanceService annualMaintenanceService);
 
    CommonResult getAnnualMaintenanceService(Integer id);
 
    CommonResult deletedAnnualMaintenanceService(Integer id);
}