|
|
@@ -5,10 +5,12 @@ import javax.servlet.http.HttpServletRequest;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
import org.springframework.web.servlet.view.RedirectView;
|
|
|
import com.goafanti.achievement.service.AchievementService;
|
|
|
import com.goafanti.business.service.BusinessProjectService;
|
|
|
+import com.goafanti.common.bo.Result;
|
|
|
import com.goafanti.common.service.DistrictGlossoryService;
|
|
|
import com.goafanti.common.service.FieldGlossoryService;
|
|
|
import com.goafanti.demand.service.DemandInterestService;
|
|
|
@@ -54,4 +56,14 @@ public class PortalController extends BaseController {
|
|
|
return modelview;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @RequestMapping(value="/portal/technologyTrading/industryList", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public Result getIndustryList() {
|
|
|
+ Result result=new Result();
|
|
|
+ result.setData(userIdentityService.selectIndustryReletively());
|
|
|
+ return result;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|