| | |
| | | */ |
| | | package org.sxkj.fw.device.mapper; |
| | | |
| | | import org.sxkj.fw.device.dto.FwDeviceMaintainPlanDTO; |
| | | import org.sxkj.fw.device.entity.FwDeviceMaintainPlanEntity; |
| | | import org.sxkj.fw.device.vo.FwDeviceMaintainPlanVO; |
| | | import org.sxkj.fw.device.excel.FwDeviceMaintainPlanExcel; |
| | |
| | | /** |
| | | * 设备维护计划表 Mapper 接口 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-08 |
| | | * @author Aix |
| | | * @since 2026-01-09 |
| | | */ |
| | | public interface FwDeviceMaintainPlanMapper extends BaseMapper<FwDeviceMaintainPlanEntity> { |
| | | |
| | | /** |
| | | * 获取详情 |
| | | * @param id 计划id |
| | | * @return 计划详情 |
| | | */ |
| | | FwDeviceMaintainPlanVO getFwDeviceMaintainPlanById(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | * @param fwDeviceMaintainPlan |
| | | * @return |
| | | */ |
| | | List<FwDeviceMaintainPlanVO> selectFwDeviceMaintainPlanPage(IPage page, FwDeviceMaintainPlanVO fwDeviceMaintainPlan); |
| | | List<FwDeviceMaintainPlanVO> selectFwDeviceMaintainPlanPage(IPage page, FwDeviceMaintainPlanDTO fwDeviceMaintainPlan); |
| | | |
| | | |
| | | /** |