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 map = new TreeMap(); return res; } }