package com.bcxin.survey.controller; import com.bcxin.survey.base.BaseController; import com.bcxin.survey.service.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; /** * 系统基础数据导入(数据字典) * @author luopeng * */ @Controller @RequestMapping("/system") @Scope("prototype") public class SystemDLLController extends BaseController { @Autowired private UserService userService; /** * 快速修复script脚本 * @return * @throws Exception */ @RequestMapping(value = "/testUser") public ModelAndView initFixAttrScript() throws Exception{ ModelAndView view = new ModelAndView("login"); //userService.findSurveyExpertUser(); return view; } }