Authored by qinchao

去掉不用import

... ... @@ -6,7 +6,6 @@ import com.ui.User.UserAuthLocal;
import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.Directional;
import com.ui.model.req.AuthModule;
import com.ui.model.req.User;
import org.apache.commons.lang.RandomStringUtils;
... ... @@ -19,12 +18,10 @@ import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.client.RestTemplate;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
... ... @@ -37,9 +34,6 @@ public class UserCtrl {
Logger log = LoggerFactory.getLogger(UserCtrl.class);
@Autowired
private RestTemplate restTemplate;
@Autowired
private HttpRestClient httpRestClient;
@Autowired
... ...