Authored by ping

add test

... ... @@ -65,4 +65,13 @@ public class UnionRest {
}
return response;
}
@RequestMapping(value = "/test")
@ResponseBody public UnionResponseBO test() throws ServiceException {
log.info("enter unionsRest.test");
UnionResponseBO response = new UnionResponseBO();
response.setMsg("success");
response.setSuccess(true);
return response;
}
}
... ...