1、回调类配置 :IP复用 Dnat业务 添加、删除字段;

2、日志:APP详情接口,添加appId不能为空验证、修改出入口查询条件相关sql;
3、流量统计所有趋势图,过滤最后一个全为0的点
This commit is contained in:
zhangdongxu
2019-01-10 18:14:50 +08:00
parent 99d3b87e1a
commit 2b97ffc53e
5 changed files with 88 additions and 28 deletions

View File

@@ -1221,6 +1221,9 @@ public class DashboardServiceController extends BaseRestController {
throw new RestServiceException("searchStartTime和searchEndTime参数必须同时填写",
RestBusinessCode.config_integrity_error.getValue());
}
if (StringUtil.isEmpty(entity.getSearchAppId())) {
throw new RestServiceException("searchAppId参数不能为空", RestBusinessCode.missing_args.getValue());
}
//验证AppId和EntranceId必须是数值
checkNumericCondition(entity.getSearchAppId(),"searchAppId");
checkNumericCondition(entity.getSearchEntranceId(),"searchEntranceId");