...
|
...
|
@@ -224,6 +224,17 @@ public class ActivateUnionRest { |
|
|
|
|
|
|
|
|
/**
|
|
|
* 给APP提供的,通过udid查询这个设备是否已经注册过的接口
|
|
|
* 通过udid查询大数据同步过来的BASE_UDID_RELATION
|
|
|
*/
|
|
|
@RequestMapping("/getUdidRelation")
|
|
|
@ResponseBody
|
|
|
public UnionResponse getUdidRelation(ActivateUnionRequestVO vo){
|
|
|
log.info("Enter getUdidRelation udid is {}",vo.getUdid());
|
|
|
return unionService.getUdidRelation(vo);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 给品友留的后门,如果定时任务没有启动,则通过curl调用接口,直接获取数据,并发送给品友
|
|
|
*/
|
|
|
@RequestMapping("/sendPinYou")
|
...
|
...
|
|