| | |
| | | @Override |
| | | public List<ApiArcDataDTO> queryHistoryValue(ApiArcValueQueryDTO queryDTO) { |
| | | ArcSettingEntity settingEntity = arcPointSettingService.selectByCode(queryDTO.getCode()); |
| | | if (settingEntity == null) { |
| | | log.error("arcPointSettingCode:" + queryDTO.getCode() + "不存在"); |
| | | return new ArrayList<>(); |
| | | } |
| | | ArcTypeEnum arcType = ArcTypeEnum.getEumByCode(settingEntity.getType()); |
| | | // 时间格式 |
| | | SimpleDateFormat dateFormat = arcType.getDateFormat(); |
| | |
| | | queryDTO.setEnd(calendar.getTime()); |
| | | } |
| | | if (queryDTO.getStart() == null) { |
| | | calendar.add(arcType.getCalendarType(),arcType.getCalendarNum() * 2); |
| | | calendar.add(arcType.getCalendarType(),arcType.getCalendarNum()); |
| | | queryDTO.setStart(calendar.getTime()); |
| | | } |
| | | |