From 4b96e82736cbacfa4ecdc23182b6c1194498c57d Mon Sep 17 00:00:00 2001 From: tamguo Date: Fri, 3 Aug 2018 19:20:29 +0800 Subject: [PATCH] book --- .../java/com/tamguo/modules/tiku/web/BookController.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tamguo-oms/src/main/java/com/tamguo/modules/tiku/web/BookController.java b/tamguo-oms/src/main/java/com/tamguo/modules/tiku/web/BookController.java index ecdc682..08b8d6a 100644 --- a/tamguo-oms/src/main/java/com/tamguo/modules/tiku/web/BookController.java +++ b/tamguo-oms/src/main/java/com/tamguo/modules/tiku/web/BookController.java @@ -1,10 +1,8 @@ package com.tamguo.modules.tiku.web; -import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; -import com.tamguo.modules.tiku.service.IBookService; @Controller @RequestMapping(path="tiku/book") @@ -13,9 +11,6 @@ public class BookController { /** 书籍*/ private final String BOOK_LIST_PAGE = "modules/tiku/book/list"; - @Autowired - private IBookService iBookService; - @RequestMapping(path="list") public ModelAndView index(ModelAndView model) { model.setViewName(BOOK_LIST_PAGE);