heheng
2 天以前 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
26
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.AnnualMaintenance;
import com.gkhy.exam.system.domain.AnnualMaintenanceRecord;
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.exam.system.domain.vo.AnnualMaintenanceSaveDTOReq;
 
/**
 * <p>
 * 年度基础设施维护记录表     服务类
 * </p>
 *
 * @author hh
 * @since 2025-07-31 16:12:02
 */
public interface AnnualMaintenanceRecordService extends IService<AnnualMaintenanceRecord> {
    CommonPage selectAnnualMaintenanceRecordList(AnnualMaintenanceRecord annualMaintenanceRecord);
 
    CommonResult saveAnnualMaintenanceRecord(AnnualMaintenanceRecord annualMaintenanceRecord);
 
    CommonResult getAnnualMaintenanceRecord(Integer id);
 
    CommonResult deletedAnnualMaintenanceRecord(Integer id);
}