| | |
| | | package com.iailab.module.model.mcs.pre.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.iailab.framework.common.page.PageData; |
| | | import com.iailab.framework.common.pojo.PageResult; |
| | | import com.iailab.framework.common.service.impl.BaseServiceImpl; |
| | | import com.iailab.module.model.mcs.pre.dao.DmModuleDao; |
| | | import com.iailab.module.model.mcs.pre.entity.DmModuleEntity; |
| | | import com.iailab.module.model.mcs.pre.service.DmModuleService; |
| | |
| | | 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 org.springframework.util.CollectionUtils; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.*; |
| | | |
| | | /** |
| | |
| | | @Override |
| | | public List<DmModuleEntity> list(Map<String, Object> params) { |
| | | QueryWrapper<DmModuleEntity> wrapper = getWrapper(params); |
| | | wrapper.orderByDesc("CREATE_TIME"); |
| | | wrapper.orderByDesc("create_time"); |
| | | return dmModuleDao.selectList(wrapper); |
| | | } |
| | | |
| | | @Override |
| | | public DmModuleEntity info(String id) { |
| | | return dmModuleDao.selectById(id); |
| | | } |
| | | |
| | | @Override |
| | | public DmModuleEntity getModuleByItemId(String itemId) { |
| | | List<DmModuleEntity> list = dmModuleDao.getModuleByItemId(itemId); |
| | | if (CollectionUtils.isEmpty(list)) { |
| | | return null; |
| | | } |
| | | return list.get(0); |
| | | } |
| | | |
| | | private QueryWrapper<DmModuleEntity> getWrapper(Map<String, Object> params) { |
| | |
| | | } |
| | | |
| | | @Override |
| | | public void saveModule(DmModuleEntity module) { |
| | | module.setId(UUID.randomUUID().toString()); |
| | | Calendar calendar = Calendar.getInstance(); |
| | | calendar.set(Calendar.SECOND, 0); |
| | | calendar.set(Calendar.MILLISECOND, 0); |
| | | module.setPredicttime(calendar.getTime()); |
| | | module.setCollecttime(calendar.getTime()); |
| | | module.setUpdateTime(new Date()); |
| | | dmModuleDao.insert(module); |
| | | public void saveModule(DmModuleEntity entity) { |
| | | entity.setId(UUID.randomUUID().toString()); |
| | | entity.setCreateTime(new Date()); |
| | | entity.setUpdateTime(new Date()); |
| | | dmModuleDao.insert(entity); |
| | | } |
| | | |
| | | @Override |
| | | public void update(DmModuleEntity module) { |
| | | module.setUpdateTime(new Date()); |
| | | dmModuleDao.updateById(module); |
| | | public void update(DmModuleEntity entity) { |
| | | entity.setUpdateTime(new Date()); |
| | | dmModuleDao.updateById(entity); |
| | | } |
| | | |
| | | @Override |
| | |
| | | params.put("moduletype", moduletype); |
| | | QueryWrapper<DmModuleEntity> wrapper = getWrapper(params); |
| | | return dmModuleDao.selectList(wrapper); |
| | | } |
| | | |
| | | @Override |
| | | public void updatePredictTime(String id, Date predictTime) { |
| | | DmModuleEntity entity = dmModuleDao.selectById(id); |
| | | if (entity == null) { |
| | | return; |
| | | } |
| | | entity.setPredicttime(predictTime); |
| | | dmModuleDao.updateById(entity); |
| | | } |
| | | |
| | | @Override |