package com.wgcloud.service; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import com.wgcloud.entity.CpuState; import com.wgcloud.mapper.CpuStateMapper; import com.wgcloud.util.DateUtil; import com.wgcloud.util.UUIDUtil; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; import java.util.Map; /** * @version v3.3 * @ClassName:CpuStateService.java * @author: http://www.wgstart.com * @date: 2021年1月16日 * @Description: CpuStateService.java * @Copyright: 2019-2021 wgcloud. All rights reserved. */ @Service public class CpuStateService { public PageInfo selectByParams(Map params, int currPage, int pageSize) throws Exception { PageHelper.startPage(currPage, pageSize); List list = cpuStateMapper.selectByParams(params); PageInfo pageInfo = new PageInfo(list); return pageInfo; } public void save(CpuState CpuState) throws Exception { CpuState.setId(UUIDUtil.getUUID()); CpuState.setCreateTime(DateUtil.getNowTime()); cpuStateMapper.save(CpuState); } public void saveRecord(List recordList) throws Exception { if (recordList.size() < 1) { return; } for (CpuState as : recordList) { as.setId(UUIDUtil.getUUID()); } cpuStateMapper.insertList(recordList); } public int deleteById(String[] id) throws Exception { return cpuStateMapper.deleteById(id); } public CpuState selectById(String id) throws Exception { return cpuStateMapper.selectById(id); } public Double selectMaxByHostname(String hostname) throws Exception { return cpuStateMapper.selectMaxByHostname(hostname); } public Double selectMaxByDate(Map map) throws Exception { return cpuStateMapper.selectMaxByDate(map); } public List selectAllByParams(Map params) throws Exception { return cpuStateMapper.selectAllByParams(params); } public int deleteByAccountAndDate(Map params) throws Exception{ return cpuStateMapper.deleteByAccountAndDate(params); } @Autowired private CpuStateMapper cpuStateMapper; }