吉安感知网项目-后端
linwei
14 hours ago 08ddfad4530a014094c06fe68b8c2d9a0753403a
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/mapper/FwDeviceMaintainPlanMapper.java
@@ -16,6 +16,7 @@
 */
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;
@@ -28,10 +29,17 @@
/**
 * 设备维护计划表 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);
   /**
    * 自定义分页
@@ -40,7 +48,7 @@
    * @param fwDeviceMaintainPlan
    * @return
    */
   List<FwDeviceMaintainPlanVO> selectFwDeviceMaintainPlanPage(IPage page, FwDeviceMaintainPlanVO fwDeviceMaintainPlan);
   List<FwDeviceMaintainPlanVO> selectFwDeviceMaintainPlanPage(IPage page, FwDeviceMaintainPlanDTO fwDeviceMaintainPlan);
   /**