| | |
| | | */ |
| | | package org.sxkj.fw.device.mapper; |
| | | |
| | | 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; |
| | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 反无设备表 Mapper 接口 |
| | | * 设备表 Mapper 接口 |
| | | * |
| | | * @author AIX |
| | | * @since 2026-01-06 |
| | | * @author aix |
| | | * @since 2026-01-08 |
| | | */ |
| | | public interface FwDeviceMapper extends BaseMapper<FwDeviceEntity> { |
| | | |
| | |
| | | * @param fwDevice |
| | | * @return |
| | | */ |
| | | List<FwDeviceVO> selectFwDevicePage(IPage page, FwDeviceVO fwDevice); |
| | | List<FwDeviceEntity> selectFwDevicePage(IPage page, FwDeviceDTO fwDevice); |
| | | |
| | | |
| | | /** |