Authored by fangyeqing

FIX:fix bug without innerkey

... ... @@ -45,7 +45,7 @@ public class SignAspect {
id = 1;
else
id = 2;
return xklInterKeyRespository.findOne(id).getKey();
return (xklInterKeyRespository.findOne(id) == null)?"":xklInterKeyRespository.findOne(id).getKey();
}
/**
* 定义切点,定位到@Sign注解的地方
... ...