调整Book基础内容(可以正常访问请求)

This commit is contained in:
YoVinchen 2023-08-16 09:54:36 +08:00
parent 6c3b4925cf
commit e9ca234f24
4 changed files with 5 additions and 6 deletions

View File

@ -1,12 +1,12 @@
package com.test.controller;
import com.test.entity.Book;
import com.test.service.BookService;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.awt.print.Book;
/**
* ClassName: BookController

View File

@ -2,8 +2,7 @@ package com.test.mapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import java.awt.print.Book;
import com.test.entity.Book;
/**
* ClassName: BookMapper

View File

@ -1,6 +1,6 @@
package com.test.service;
import java.awt.print.Book;
import com.test.entity.Book;
/**
* ClassName: BookService

View File

@ -5,7 +5,7 @@ import com.test.service.BookService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.awt.print.Book;
import com.test.entity.Book;
/**
* ClassName: BookServiceImpl