| | |
| | | package org.sxkj.fw.device.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import org.sxkj.fw.device.dto.FwDeviceMaintainRecordDTO; |
| | | import org.sxkj.fw.device.entity.FwDeviceMaintainRecordEntity; |
| | | import org.sxkj.fw.device.vo.FwDeviceMaintainRecordVO; |
| | | import org.sxkj.fw.device.excel.FwDeviceMaintainRecordExcel; |
| | |
| | | * 设备维护记录表 服务类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | public interface IFwDeviceMaintainRecordService extends BaseService<FwDeviceMaintainRecordEntity> { |
| | | |
| | | /** |
| | | * 查询最新一条维修记录 |
| | | * @param planId 设备维护计划ID |
| | | */ |
| | | FwDeviceMaintainRecordVO selectLastOne(Long planId); |
| | | |
| | | /** |
| | | * 自定义分页 |
| | | * |
| | |
| | | * @param fwDeviceMaintainRecord |
| | | * @return |
| | | */ |
| | | IPage<FwDeviceMaintainRecordVO> selectFwDeviceMaintainRecordPage(IPage<FwDeviceMaintainRecordVO> page, FwDeviceMaintainRecordVO fwDeviceMaintainRecord); |
| | | IPage<FwDeviceMaintainRecordVO> selectFwDeviceMaintainRecordPage(IPage<FwDeviceMaintainRecordVO> page, FwDeviceMaintainRecordDTO fwDeviceMaintainRecord); |
| | | |
| | | |
| | | /** |