| | |
| | | } |
| | | |
| | | @Override |
| | | public DaPointDTO getSimpleInfoById(String id) { |
| | | return ConvertUtils.sourceToTarget(daPointDao.selectById(id), DaPointDTO.class); |
| | | } |
| | | |
| | | @Override |
| | | public DaPointDTO getSimpleInfoByNo(String no) { |
| | | QueryWrapper<DaPointEntity> queryWrapper = new QueryWrapper(); |
| | | queryWrapper.eq("pointNo", no); |
| | | return ConvertUtils.sourceToTarget(daPointDao.selectOne(queryWrapper), DaPointDTO.class); |
| | | } |
| | | |
| | | @Override |
| | | public List<DaPointDTO> list(Map<String, Object> params) { |
| | | Object page = params.get("page"); |
| | | Object limit = params.get("limit"); |
| | | Object pointType = params.get("pointType"); |
| | | List<String> pointNos = new ArrayList<>(); |
| | | if (params.get("pointNos") != null) { |
| | |
| | | measurePoint.setSourceId(dataPoint.getSourceOption().get(1)); |
| | | measurePoint.setTagNo(dataPoint.getSourceOption().get(2)); |
| | | daMeasurePointService.update(measurePoint); |
| | | } else if (PointTypeEnum.CALCULATE_POINT.equals(dataPoint.getPointType())) { |
| | | } else if (PointTypeEnum.CALCULATE_POINT.getName().equals(dataPoint.getPointType())) { |
| | | daMathPointService.update(dataPoint.getMathPoint()); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | @DSTransactional(rollbackFor = Exception.class) |
| | | public void delete(String[] ids) { |
| | | daPointDao.deleteBatchIds(Arrays.asList(ids)); |
| | | daMeasurePointService.deleteByPoint(ids); |
| | | daMathPointService.deleteByPoint(ids); |
| | | public void delete(String[] id) { |
| | | daPointDao.deleteBatchIds(Arrays.asList(id)); |
| | | daMeasurePointService.deleteByPoint(id); |
| | | daMathPointService.deleteByPoint(id); |
| | | } |
| | | |
| | | @Override |