| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | * @since 2026-01-08 |
| | | */ |
| | | public interface IFwDeviceScrapService extends BaseService<FwDeviceScrapEntity> { |
| | | |
| | | /** |
| | | * 新增报废记录 |
| | | * @param dto 报废记录 |
| | | * @return true/false |
| | | */ |
| | | boolean saveFwDeviceScrap(FwDeviceScrapDTO dto); |
| | | |
| | | /** |
| | | * 自定义分页 |
| | | * |
| | |
| | | * @param fwDeviceScrap |
| | | * @return |
| | | */ |
| | | IPage<FwDeviceScrapVO> selectFwDeviceScrapPage(IPage<FwDeviceScrapVO> page, FwDeviceScrapVO fwDeviceScrap); |
| | | IPage<FwDeviceScrapVO> selectFwDeviceScrapPage(IPage<FwDeviceScrapVO> page, FwDeviceScrapDTO fwDeviceScrap); |
| | | |
| | | |
| | | /** |