AdminHomePageApiController.java 671 B

12345678910111213141516171819202122232425
  1. package com.goafanti.admin.controller;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RequestMethod;
  4. import org.springframework.web.bind.annotation.RestController;
  5. import com.goafanti.common.bo.Result;
  6. @RestController
  7. @RequestMapping(value = "/api/admin/homePage")
  8. public class AdminHomePageApiController {
  9. /**
  10. * 首页业务数量统计(进行中/已完成)
  11. * @return
  12. */
  13. @RequestMapping(value = "/count", method = RequestMethod.GET)
  14. public Result count(){
  15. Result res = new Result();
  16. //Map<String, Integer> map = new TreeMap<String, Integer>();
  17. return res;
  18. }
  19. }