|
@@ -137,21 +137,6 @@ public class ThirdPartyServiceImpl implements ThirdPartyService {
|
|
|
if (!DateUtil.isValidDate(canViewReportDate)) {
|
|
|
return CommonResponse.create(ExceptionCodeEnum.PARAMS_ERROR, "系统异常");
|
|
|
}
|
|
|
- //llf只返回2024-11-30后的数据
|
|
|
- if (secretEnum == SecretEnum.SECRET_ENUM_2) {
|
|
|
- long targetTime = DateUtil.dateStrToTimestamp(date, "yyyy-MM-dd");
|
|
|
- long limitTime = DateUtil.dateStrToTimestamp("2024-11-30", "yyyy-MM-dd");
|
|
|
- if (targetTime < limitTime) {
|
|
|
- return CommonResponse.create(500, "数据不存在");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //博虎UV需要去重
|
|
|
- if (secretEnum == SecretEnum.SECRET_ENUM_10) {
|
|
|
- List<ReportUvVo> res = new ArrayList<>();
|
|
|
- return CommonResponse.success(res);
|
|
|
- }
|
|
|
-
|
|
|
//10点后可查询前一天数据
|
|
|
long nowTimestamp = System.currentTimeMillis() / 1000;
|
|
|
long limitTime = nowTimestamp - 34L * TimeConstant.HOUR;
|