maven
2025-11-21 b29a49a5ef467ff5c96b5590d76018721bdf8e98
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
27
28
29
30
package com.ruoyi.device.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.device.dto.DeviceMaintenanceDto;
import com.ruoyi.device.dto.DeviceMonthlyRepairTableDTO;
import com.ruoyi.device.dto.RepairAmountGroupDTO;
import com.ruoyi.device.pojo.DeviceMaintenance;
import com.ruoyi.framework.web.domain.AjaxResult;
 
import javax.servlet.http.HttpServletResponse;
import java.util.List;
 
public interface IDeviceMaintenanceService extends IService<DeviceMaintenance> {
 
    IPage<DeviceMaintenanceDto> queryPage(Page page, DeviceMaintenanceDto deviceMaintenanceDto);
 
    AjaxResult saveDeviceRepair(DeviceMaintenance deviceMaintenance);
 
    AjaxResult updateDeviceDeviceMaintenance(DeviceMaintenance deviceMaintenance);
 
    void export(HttpServletResponse response, Long[] ids);
 
    DeviceMaintenanceDto detailById(Long id);
 
    List<DeviceMonthlyRepairTableDTO> getMonthlyRepairAmountByYear(String year);
 
    List<RepairAmountGroupDTO> getRepairAmountByYear(String year);
}