You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.8 KiB
66 lines
1.8 KiB
5 months ago
|
package club.controller;
|
||
|
|
||
|
import club.pojo.Blog;
|
||
|
import club.service.BlogService;
|
||
|
import club.util.Message;
|
||
|
import com.github.pagehelper.PageInfo;
|
||
|
import org.springframework.stereotype.Controller;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||
|
|
||
|
import javax.annotation.Resource;
|
||
|
@Controller
|
||
|
@RequestMapping("/blog")
|
||
|
public class BlogController {
|
||
|
@Resource
|
||
|
private BlogService blogService;
|
||
|
@RequestMapping("/blogs")
|
||
|
@ResponseBody
|
||
|
public Message blogs(String actionTime, @RequestParam("pn") Integer pageNum){
|
||
|
if(pageNum == null){
|
||
|
pageNum = 1;
|
||
|
}
|
||
|
System.out.println(actionTime);
|
||
|
PageInfo<Blog> allBlog = blogService.findAllBlog(actionTime, pageNum, 3);
|
||
|
return Message.success().add("pageInfo",allBlog);
|
||
|
}
|
||
|
@RequestMapping("/create")
|
||
|
@ResponseBody
|
||
|
public Message creat(Blog blog){
|
||
|
int i = blogService.add(blog);
|
||
|
if(i > 0){
|
||
|
return Message.success();
|
||
|
}else {
|
||
|
return Message.fail();
|
||
|
}
|
||
|
}
|
||
|
@RequestMapping("/update")
|
||
|
@ResponseBody
|
||
|
public Message update(Blog blog){
|
||
|
int i = blogService.updateBlog(blog);
|
||
|
if(i > 0){
|
||
|
return Message.success();
|
||
|
}else {
|
||
|
return Message.fail();
|
||
|
}
|
||
|
}
|
||
|
@RequestMapping("/delete")
|
||
|
@ResponseBody
|
||
|
public Message delete(Integer id){
|
||
|
int i = blogService.del(id);
|
||
|
if(i > 0){
|
||
|
return Message.success();
|
||
|
}else {
|
||
|
return Message.fail();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@RequestMapping("/findById")
|
||
|
@ResponseBody
|
||
|
public Message findById(Integer id){
|
||
|
Blog blog = blogService.findById(id);
|
||
|
return Message.success().add("blog", blog);
|
||
|
}
|
||
|
}
|