吉安感知网项目-后端
linwei
15 hours ago 08ddfad4530a014094c06fe68b8c2d9a0753403a
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/mapper/FwDeviceScrapMapper.java
@@ -16,22 +16,31 @@
 */
package org.sxkj.fw.device.mapper;
import org.sxkj.fw.device.entity.FwDeviceScrapEntity;
import org.sxkj.fw.device.vo.FwDeviceScrapVO;
import org.sxkj.fw.device.excel.FwDeviceScrapExcel;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import org.sxkj.fw.device.dto.FwDeviceScrapDTO;
import org.sxkj.fw.device.entity.FwDeviceScrapEntity;
import org.sxkj.fw.device.excel.FwDeviceScrapExcel;
import org.sxkj.fw.device.vo.FwDeviceScrapVO;
import java.util.List;
/**
 * 设备报废记录表 Mapper 接口
 *
 * @author lw
 * @since 2026-01-07
 * @since 2026-01-08
 */
public interface FwDeviceScrapMapper extends BaseMapper<FwDeviceScrapEntity> {
   /**
    * 获取详情
    * @param id 计划id
    * @return 计划详情
    */
   FwDeviceScrapVO getFwDeviceScrapById(@Param("id") Long id);
   /**
    * 自定义分页
@@ -40,7 +49,7 @@
    * @param fwDeviceScrap
    * @return
    */
   List<FwDeviceScrapVO> selectFwDeviceScrapPage(IPage page, FwDeviceScrapVO fwDeviceScrap);
   List<FwDeviceScrapVO> selectFwDeviceScrapPage(IPage page, FwDeviceScrapDTO fwDeviceScrap);
   /**