Commit 174fec1d by zhangkb

获取到基础项为空的返回日志信息

parent 81822599
......@@ -24,7 +24,11 @@ public class GetBaseIndValueActor extends AbstractActor{
if(indValueMap.get("value")==null) {//如果指标值为空,返回失败结果
//返回指标值结果
getSender().tell(new BaseIndValueMsg(getBaseIndValueMsg.getIndId()
,null,indValueMap.get("compareObjDesc").toString(),0,""),getSelf());
,null,indValueMap.get("compareObjDesc").toString(),0,
"获取指标id:"+
getBaseIndValueMsg.getIndId()+";维度:"+
getBaseIndValueMsg.getDimValue().get(0).getDimvalue()+","+
getBaseIndValueMsg.getDimValue().get(1).getDimvalue()+" 的指标值为空;"),getSelf());
}else {
getSender().tell(new BaseIndValueMsg(getBaseIndValueMsg.getIndId()
,indValueMap.get("value").toString(),
......@@ -36,7 +40,7 @@ public class GetBaseIndValueActor extends AbstractActor{
0,"无法获取指标id:"+
getBaseIndValueMsg.getIndId()+";维度:"+
getBaseIndValueMsg.getDimValue().get(0).getDimvalue()+","+
getBaseIndValueMsg.getDimValue().get(1).getDimvalue()+" 的指标值"),getSelf());
getBaseIndValueMsg.getDimValue().get(1).getDimvalue()+" 的指标值;"),getSelf());
}
})
.build();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment