吉安感知网项目-后端
linwei
yesterday 08ddfad4530a014094c06fe68b8c2d9a0753403a
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/service/IFwDeviceScrapService.java
@@ -17,11 +17,13 @@
package org.sxkj.fw.device.service;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
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.metadata.IPage;
import org.springblade.core.mp.base.BaseService;
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;
/**
@@ -31,6 +33,21 @@
 * @since 2026-01-08
 */
public interface IFwDeviceScrapService extends BaseService<FwDeviceScrapEntity> {
   /**
    * 获取详情
    * @param id 报废记录id
    * @return 详情
    */
   FwDeviceScrapVO getFwDeviceScrapById(Long id);
   /**
    * 新增报废记录
    * @param dto 报废记录
    * @return true/false
    */
   boolean saveFwDeviceScrap(FwDeviceScrapDTO dto);
   /**
    * 自定义分页
    *
@@ -38,7 +55,7 @@
    * @param fwDeviceScrap
    * @return
    */
   IPage<FwDeviceScrapVO> selectFwDeviceScrapPage(IPage<FwDeviceScrapVO> page, FwDeviceScrapVO fwDeviceScrap);
   IPage<FwDeviceScrapVO> selectFwDeviceScrapPage(IPage<FwDeviceScrapVO> page, FwDeviceScrapDTO fwDeviceScrap);
   /**