|
|
@@ -9,7 +9,6 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
import com.goafanti.achievement.service.AchievementInterestService;
|
|
|
import com.goafanti.achievement.service.AchievementService;
|
|
|
import com.goafanti.common.bo.Result;
|
|
|
-import com.goafanti.common.constant.ErrorConstants;
|
|
|
import com.goafanti.common.controller.BaseApiController;
|
|
|
import com.goafanti.common.utils.StringUtils;
|
|
|
import com.goafanti.demand.service.DemandService;
|
|
|
@@ -89,6 +88,16 @@ public class OpenAppDiscoveryController extends BaseApiController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 专家领域分类列表
|
|
|
+ *
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/domainList", method = RequestMethod.GET)
|
|
|
+ public Result domainList() {
|
|
|
+ Result res = new Result();
|
|
|
+ res.setData(userIdentityService.domainList());
|
|
|
+ return res;
|
|
|
+ }
|
|
|
+ /**
|
|
|
* 专家列表
|
|
|
*/
|
|
|
@RequestMapping(value = "/expertsList", method = RequestMethod.GET)
|