浏览代码

用户行为记录

huangzhiguo 2 年之前
父节点
当前提交
935147b6d8
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/main/java/com/caimei365/user/controller/CmBehaviorRecordApi.java

+ 2 - 2
src/main/java/com/caimei365/user/controller/CmBehaviorRecordApi.java

@@ -29,8 +29,8 @@ public class CmBehaviorRecordApi {
      */
     @IpSave(saveName="用户行为记录",saveParams = true)
     @GetMapping("/Statistics")
-    public ResponseJson<String> behaviorRecordApp(Integer userId,String pagePath,String pageType,String pageLabel,String behaviorType,Integer productId,String accessDuration,Integer accessClient){
-        log.info("用户行为记录=========》"+userId+"===="+pagePath+"===="+pageType+"===="+pageLabel+"===="+behaviorType+"===="+productId+"===="+accessDuration+"===="+accessClient);
+    public ResponseJson<String> behaviorRecordApp(Integer userId,String pagePath,String pageType,String pageLabel,String behaviorType,Integer productId,String accessDuration,Integer accessClient,Integer shopId){
+        log.info("用户行为记录=======userId==》"+userId+"==pagePath=="+pagePath+"==pageType=="+pageType+"==pageLabel=="+pageLabel+"==behaviorType=="+behaviorType+"==productId=="+productId+"==accessDuration=="+accessDuration+"==accessClient=="+accessClient+"==shopId=="+shopId);
         return ResponseJson.success("用户行为记录完成");
     }