package com.yuanchu.mom.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.yuanchu.mom.excel.DeviceMaintenanceExport;
|
import com.yuanchu.mom.pojo.DeviceMaintenance;
|
|
import javax.servlet.http.HttpServletResponse;
|
import java.util.List;
|
|
public interface DeviceMaintenanceService extends IService<DeviceMaintenance> {
|
IPage<DeviceMaintenance> getDeviceMaintenancePage(Page page, Integer deviceId, String deviceNumber);
|
|
List<DeviceMaintenanceExport> deviceMaintenanceExport(Integer deviceId);
|
|
/**
|
* 导出Word设备维护记录
|
*
|
* @param deviceId
|
* @param response
|
*/
|
void exportMaintenanceRecord(Integer deviceId, HttpServletResponse response);
|
}
|