|
@@ -1,9 +1,7 @@
|
|
|
package com.goafanti.user.controller;
|
|
package com.goafanti.user.controller;
|
|
|
|
|
|
|
|
import com.goafanti.common.bo.Result;
|
|
import com.goafanti.common.bo.Result;
|
|
|
-import com.goafanti.common.model.UserFollow;
|
|
|
|
|
import com.goafanti.user.bo.InputUserFollowList;
|
|
import com.goafanti.user.bo.InputUserFollowList;
|
|
|
-import com.goafanti.user.bo.InputUserServiceFollow;
|
|
|
|
|
import com.goafanti.user.service.UserFollowService;
|
|
import com.goafanti.user.service.UserFollowService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -18,6 +16,7 @@ public class UserFollowController {
|
|
|
|
|
|
|
|
@RequestMapping(value = "/userFollowList", method = RequestMethod.GET)
|
|
@RequestMapping(value = "/userFollowList", method = RequestMethod.GET)
|
|
|
public Result userFollowList(InputUserFollowList in){
|
|
public Result userFollowList(InputUserFollowList in){
|
|
|
|
|
+ System.out.println("11111");
|
|
|
Result res =new Result();
|
|
Result res =new Result();
|
|
|
res.data(userFollowService.userFollowList(in));
|
|
res.data(userFollowService.userFollowList(in));
|
|
|
return res;
|
|
return res;
|