package com.ruoyi.dl.service.impl;
|
|
import java.util.List;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
import com.ruoyi.dl.mapper.DlShebeixxCdYcsjMapper;
|
import com.ruoyi.dl.domain.DlShebeixxCdYcsj;
|
import com.ruoyi.dl.service.IDlShebeixxCdYcsjService;
|
|
/**
|
* 设备测点异常数据Service业务层处理
|
*
|
* @author ruoyi
|
* @date 2023-09-13
|
*/
|
@Service
|
public class DlShebeixxCdYcsjServiceImpl implements IDlShebeixxCdYcsjService
|
{
|
@Autowired
|
private DlShebeixxCdYcsjMapper dlShebeixxCdYcsjMapper;
|
|
/**
|
* 查询设备测点异常数据
|
*
|
* @param id 设备测点异常数据主键
|
* @return 设备测点异常数据
|
*/
|
@Override
|
public DlShebeixxCdYcsj selectDlShebeixxCdYcsjById(Long id)
|
{
|
return dlShebeixxCdYcsjMapper.selectDlShebeixxCdYcsjById(id);
|
}
|
|
/**
|
* 查询设备测点异常数据列表
|
*
|
* @param dlShebeixxCdYcsj 设备测点异常数据
|
* @return 设备测点异常数据
|
*/
|
@Override
|
public List<DlShebeixxCdYcsj> selectDlShebeixxCdYcsjList(DlShebeixxCdYcsj dlShebeixxCdYcsj)
|
{
|
return dlShebeixxCdYcsjMapper.selectDlShebeixxCdYcsjList(dlShebeixxCdYcsj);
|
}
|
|
/**
|
* 查询设备测点异常数据列表
|
*
|
* @param dlShebeixxCdYcsj 设备测点异常数据
|
* @return 设备测点异常数据
|
*/
|
@Override
|
public List<DlShebeixxCdYcsj> selectListByGroupBy(DlShebeixxCdYcsj dlShebeixxCdYcsj)
|
{
|
return dlShebeixxCdYcsjMapper.selectListByGroupBy(dlShebeixxCdYcsj);
|
}
|
|
/**
|
* 新增设备测点异常数据
|
*
|
* @param dlShebeixxCdYcsj 设备测点异常数据
|
* @return 结果
|
*/
|
@Override
|
public int insertDlShebeixxCdYcsj(DlShebeixxCdYcsj dlShebeixxCdYcsj)
|
{
|
return dlShebeixxCdYcsjMapper.insertDlShebeixxCdYcsj(dlShebeixxCdYcsj);
|
}
|
|
/**
|
* 修改设备测点异常数据
|
*
|
* @param dlShebeixxCdYcsj 设备测点异常数据
|
* @return 结果
|
*/
|
@Override
|
public int updateDlShebeixxCdYcsj(DlShebeixxCdYcsj dlShebeixxCdYcsj)
|
{
|
return dlShebeixxCdYcsjMapper.updateDlShebeixxCdYcsj(dlShebeixxCdYcsj);
|
}
|
|
/**
|
* 批量删除设备测点异常数据
|
*
|
* @param ids 需要删除的设备测点异常数据主键
|
* @return 结果
|
*/
|
@Override
|
public int deleteDlShebeixxCdYcsjByIds(Long[] ids)
|
{
|
return dlShebeixxCdYcsjMapper.deleteDlShebeixxCdYcsjByIds(ids);
|
}
|
|
/**
|
* 删除设备测点异常数据信息
|
*
|
* @param id 设备测点异常数据主键
|
* @return 结果
|
*/
|
@Override
|
public int deleteDlShebeixxCdYcsjById(Long id)
|
{
|
return dlShebeixxCdYcsjMapper.deleteDlShebeixxCdYcsjById(id);
|
}
|
}
|