| 12345678910111213141516171819202122232425 |
- package com.goafanti.admin.controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import org.springframework.web.bind.annotation.RestController;
- import com.goafanti.common.bo.Result;
- @RestController
- @RequestMapping(value = "/api/admin/homePage")
- public class AdminHomePageApiController {
- /**
- * 首页业务数量统计(进行中/已完成)
- * @return
- */
- @RequestMapping(value = "/count", method = RequestMethod.GET)
- public Result count(){
- Result res = new Result();
- //Map<String, Integer> map = new TreeMap<String, Integer>();
-
- return res;
- }
- }
|