| | |
| | | package org.sxkj.fw.device.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import org.sxkj.fw.device.dto.FwDeviceAndTrackDTO; |
| | | import org.sxkj.fw.device.dto.FwDeviceDTO; |
| | | import org.sxkj.fw.device.entity.FwDeviceEntity; |
| | | import org.sxkj.fw.device.vo.FwDeviceVO; |
| | | import org.sxkj.fw.device.excel.FwDeviceExcel; |
| | |
| | | /** |
| | | * 设备表 服务类 |
| | | * |
| | | * @author Aix |
| | | * @author aix |
| | | * @since 2026-01-08 |
| | | */ |
| | | public interface IFwDeviceService extends BaseService<FwDeviceEntity> { |
| | |
| | | * @param fwDevice |
| | | * @return |
| | | */ |
| | | IPage<FwDeviceVO> selectFwDevicePage(IPage<FwDeviceVO> page, FwDeviceVO fwDevice); |
| | | IPage<FwDeviceEntity> selectFwDevicePage(IPage<FwDeviceEntity> page, FwDeviceDTO fwDevice); |
| | | |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | List<FwDeviceExcel> exportFwDevice(Wrapper<FwDeviceEntity> queryWrapper); |
| | | |
| | | /** |
| | | * 添加或更新 |
| | | * @param dto |
| | | * @return |
| | | */ |
| | | Boolean saveFwDevice(FwDeviceAndTrackDTO dto); |
| | | |
| | | } |