ADD file via upload

master
moec42frf 2 years ago
parent 1d078f3019
commit 6bc5954cfe

@ -0,0 +1,41 @@
package org.sang.controller.admin;
import org.sang.bean.Article;
import org.sang.bean.RespBean;
import org.sang.service.ArticleService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Controller
*/
@RestController
@RequestMapping("/admin")
public class AdminController {
@Autowired
ArticleService articleService;
@RequestMapping(value = "/article/all", method = RequestMethod.GET)
public Map<String, Object> getArticleByStateByAdmin(@RequestParam(value = "page", defaultValue = "1") Integer page, @RequestParam(value = "count", defaultValue = "6") Integer count, String keywords) {
List<Article> articles = articleService.getArticleByState(-2, page, count, keywords);
Map<String, Object> map = new HashMap<>();
map.put("articles", articles);
map.put("totalCount", articleService.getArticleCountByState(1, null, keywords));
return map;
}
@RequestMapping(value = "/article/dustbin", method = RequestMethod.PUT)
public RespBean updateArticleState(Long[] aids, Integer state) {
if (articleService.updateArticleState(aids, state) == aids.length) {
return new RespBean("success", "删除成功!");
}
return new RespBean("error", "删除失败!");
}
}
Loading…
Cancel
Save