log-slf4j

This commit is contained in:
wangjinlei
2023-11-22 10:45:21 +08:00
parent 825bed5187
commit 57641b2e2a
93 changed files with 198 additions and 72 deletions

View File

@@ -6,6 +6,7 @@ import com.peanut.modules.book.entity.MyUserEntity;
import com.peanut.modules.book.entity.UserFeedbackEntity;
import com.peanut.modules.book.service.MyUserService;
import com.peanut.modules.book.service.UserFeedbackSerivce;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -18,6 +19,7 @@ import java.util.List;
/**
* 追加评论后游客评论无限制
*/
@Slf4j
@RestController
@RequestMapping("/user/feedback")
public class UserFeedbackController {