Commit c1da6634 authored by jiaorz's avatar jiaorz

Merge branch 'master-new-activity' into dev

parents b9037719 71ce29b2
package com.xxfc.platform.activity.rest; package com.xxfc.platform.activity.rest;
import com.github.wxiaoqi.security.auth.client.annotation.IgnoreClientToken;
import com.github.wxiaoqi.security.common.msg.ObjectRestResponse; import com.github.wxiaoqi.security.common.msg.ObjectRestResponse;
import com.github.wxiaoqi.security.common.rest.BaseController; import com.github.wxiaoqi.security.common.rest.BaseController;
import com.xxfc.platform.activity.biz.ActivityPopularizeLogBiz; import com.xxfc.platform.activity.biz.ActivityPopularizeLogBiz;
...@@ -13,6 +14,7 @@ import org.springframework.web.bind.annotation.RestController; ...@@ -13,6 +14,7 @@ import org.springframework.web.bind.annotation.RestController;
public class ActivityPopularizeLogController extends BaseController<ActivityPopularizeLogBiz,ActivityPopularizeLog> { public class ActivityPopularizeLogController extends BaseController<ActivityPopularizeLogBiz,ActivityPopularizeLog> {
@GetMapping(value = "/getByUser") @GetMapping(value = "/getByUser")
@IgnoreClientToken
public ObjectRestResponse selectByUserId(Integer popularizeId) { public ObjectRestResponse selectByUserId(Integer popularizeId) {
return ObjectRestResponse.succ(baseBiz.selectByUserId(popularizeId)); return ObjectRestResponse.succ(baseBiz.selectByUserId(popularizeId));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment