com.jblv.system.service.impl.CostTimeServiceImpl Maven / Gradle / Ivy
The newest version!
package com.jblv.system.service.impl;
import com.jblv.common.core.text.Convert;
import com.jblv.system.domain.CostTime;
import com.jblv.system.mapper.CostTimeMapper;
import com.jblv.system.service.ICostTimeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* 系统响应时间统计记录(方便对响应时间长的进行优化) 服务层实现
*
* @author lws
* @date 2018-10-25
*/
@Service
public class CostTimeServiceImpl implements ICostTimeService {
@Autowired
private CostTimeMapper costTimeMapper;
/**
* 查询系统响应时间统计记录(方便对响应时间长的进行优化)信息
*
* @param id 系统响应时间统计记录(方便对响应时间长的进行优化)ID
* @return 系统响应时间统计记录(方便对响应时间长的进行优化)信息
*/
@Override
public CostTime selectCostTimeById(Integer id) {
return costTimeMapper.selectCostTimeById(id);
}
/**
* 查询系统响应时间统计记录(方便对响应时间长的进行优化)列表
*
* @param costTime 系统响应时间统计记录(方便对响应时间长的进行优化)信息
* @return 系统响应时间统计记录(方便对响应时间长的进行优化)集合
*/
@Override
public List selectCostTimeList(CostTime costTime) {
return costTimeMapper.selectCostTimeList(costTime);
}
/**
* 新增系统响应时间统计记录(方便对响应时间长的进行优化)
*
* @param costTime 系统响应时间统计记录(方便对响应时间长的进行优化)信息
* @return 结果
*/
@Override
public int insertCostTime(CostTime costTime) {
return costTimeMapper.insertCostTime(costTime);
}
/**
* 删除系统响应时间统计记录(方便对响应时间长的进行优化)对象
*
* @param ids 需要删除的数据ID
* @return 结果
*/
@Override
public int deleteCostTimeByIds(String ids) {
return costTimeMapper.deleteCostTimeByIds(Convert.toStrArray(ids));
}
}