package com.wgcloud.service; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import com.wgcloud.entity.HeathMonitor; import com.wgcloud.mapper.HeathMonitorMapper; import com.wgcloud.util.DateUtil; import com.wgcloud.util.UUIDUtil; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.util.List; import java.util.Map; /** * @version v2.3 * @ClassName:HeathMonitorService.java * @author: http://www.wgstart.com * @date: 2019年11月16日 * @Description: HeathMonitorService.java * @Copyright: 2017-2024 wgcloud. All rights reserved. */ @Service public class HeathMonitorService { public PageInfo selectByParams(Map params, int currPage, int pageSize) throws Exception { PageHelper.startPage(currPage, pageSize); List list = heathMonitorMapper.selectByParams(params); PageInfo pageInfo = new PageInfo(list); return pageInfo; } public void save(HeathMonitor HeathMonitor) throws Exception { HeathMonitor.setId(UUIDUtil.getUUID()); HeathMonitor.setCreateTime(DateUtil.getNowTime()); if (StringUtils.isEmpty(HeathMonitor.getHeathUrl())) { HeathMonitor.setHeathUrl(HeathMonitor.getHeathUrl().trim()); } heathMonitorMapper.save(HeathMonitor); } @Transactional public void saveRecord(List recordList) throws Exception { if (recordList.size() < 1) { return; } for (HeathMonitor as : recordList) { as.setId(UUIDUtil.getUUID()); } heathMonitorMapper.insertList(recordList); } public int countByParams(Map params) throws Exception { return heathMonitorMapper.countByParams(params); } @Transactional public int deleteById(String[] id) throws Exception { return heathMonitorMapper.deleteById(id); } public void updateById(HeathMonitor HeathMonitor) throws Exception { if (StringUtils.isEmpty(HeathMonitor.getHeathUrl())) { HeathMonitor.setHeathUrl(HeathMonitor.getHeathUrl().trim()); } heathMonitorMapper.updateById(HeathMonitor); } public HeathMonitor selectById(String id) throws Exception { return heathMonitorMapper.selectById(id); } @Transactional public void updateRecord(List recordList) throws Exception { heathMonitorMapper.updateList(recordList); } public List selectAllByParams(Map params) throws Exception { return heathMonitorMapper.selectAllByParams(params); } @Autowired private HeathMonitorMapper heathMonitorMapper; }