| | |
| | | package com.ycl.platform.service.impl; |
| | | |
| | | import com.ycl.platform.entity.TMonitor; |
| | | import com.ycl.platform.domain.entity.TMonitor; |
| | | import com.ycl.platform.domain.vo.TMonitorVO; |
| | | import com.ycl.platform.mapper.TMonitorMapper; |
| | | import com.ycl.platform.service.ITMonitorService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | |
| | | /** |
| | | * 设备资产Service业务层处理 |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-03-04 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询设备资产 |
| | | * |
| | | * |
| | | * @param id 设备资产主键 |
| | | * @return 设备资产 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询设备资产列表 |
| | | * |
| | | * |
| | | * @param tMonitor 设备资产 |
| | | * @return 设备资产 |
| | | */ |
| | | @Override |
| | | public List<TMonitor> selectTMonitorList(TMonitor tMonitor) |
| | | public List<TMonitorVO> selectTMonitorList(TMonitor tMonitor) |
| | | { |
| | | return tMonitorMapper.selectTMonitorList(tMonitor); |
| | | } |
| | | |
| | | /** |
| | | * 新增设备资产 |
| | | * |
| | | * |
| | | * @param tMonitor 设备资产 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改设备资产 |
| | | * |
| | | * |
| | | * @param tMonitor 设备资产 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除设备资产 |
| | | * |
| | | * |
| | | * @param ids 需要删除的设备资产主键 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 删除设备资产信息 |
| | | * |
| | | * |
| | | * @param id 设备资产主键 |
| | | * @return 结果 |
| | | */ |