Browse Source

修改跟进接口

anderx 1 year ago
parent
commit
054b50d4a5

+ 3 - 3
src/main/java/com/goafanti/business/controller/RestrictProjectController.java

@@ -74,8 +74,8 @@ public class RestrictProjectController extends CertifyApiController {
     /**
      * 限定项目跟进
      */
-    @RequestMapping(value = "/getFollowDtails", method = RequestMethod.GET)
-    public Result<RestrictProjectPageList> getFollowDtails(String uid){
-        return res().data(restrictProjectService.getFollowDtails(uid));
+    @RequestMapping(value = "/getFollowDetails", method = RequestMethod.GET)
+    public Result<RestrictProjectPageList> getFollowDetails(String uid){
+        return res().data(restrictProjectService.getFollowDetails(uid));
     }
 }

+ 1 - 1
src/main/java/com/goafanti/business/service/RestrictProjectService.java

@@ -12,5 +12,5 @@ public interface RestrictProjectService {
 
     Object pageList(InputRestrictProject in);
 
-    Object getFollowDtails(String uid);
+    Object getFollowDetails(String uid);
 }

+ 1 - 1
src/main/java/com/goafanti/business/service/impl/RestrictProjectServiceImpl.java

@@ -126,7 +126,7 @@ public class RestrictProjectServiceImpl extends BaseMybatisDao<RestrictProjectMa
     }
 
     @Override
-    public Object getFollowDtails(String uid) {
+    public Object getFollowDetails(String uid) {
         User user = userMapper.findUserAccountDetail(uid);
         FollowBusinessBo fbb = new FollowBusinessBo();
         SimpleDateFormat format = new SimpleDateFormat(AFTConstants.YYYYMMDDHHMMSS);