|
@@ -36,14 +36,21 @@ public class StatisticalController {
|
|
|
StatisticalFacade statisticalFacade;
|
|
|
|
|
|
|
|
|
- @ApiOperation(value = "标签数据埋点统计保存[by:wangfeng]", notes = "标签数据埋点统计保存")
|
|
|
- @PostMapping("/saveStatisticals")
|
|
|
- @SysLogger("saveStatisticals")
|
|
|
+ @ApiOperation(value = "标签数据埋点统计异步保存[by:wangfeng]", notes = "标签数据埋点统计异步保存")
|
|
|
+ @PostMapping("/saveBuriedSome")
|
|
|
+ @SysLogger("saveBuriedSome")
|
|
|
@Transactional
|
|
|
public RespDTO<Boolean> saveBuriedSomeStatisticals(@Valid @RequestBody StatisticalVO statisticalVO) {
|
|
|
- mySender.outputPointSend(statisticalVO);
|
|
|
- //boolean res = statisticalFacade.saveStatistical(statisticalVO);
|
|
|
+ mySender.outputStatistiSend(statisticalVO);
|
|
|
return RespDTO.onSuc(true);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "标签数据埋点统计保存[by:wangfeng]", notes = "标签数据埋点统计保存")
|
|
|
+ @PostMapping("/saveStatisticals")
|
|
|
+ @SysLogger("saveStatisticals")
|
|
|
+ @Transactional
|
|
|
+ public RespDTO<Boolean> saveStatisticals(@Valid @RequestBody StatisticalVO statisticalVO) {
|
|
|
+ boolean res = statisticalFacade.saveStatistical(statisticalVO);
|
|
|
+ return RespDTO.onSuc(res);
|
|
|
+ }
|
|
|
}
|