| | |
| | | package com.matrix.system.api.action; |
| | | |
| | | import com.matrix.core.pojo.AjaxResult; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | |
| | | |
| | | |
| | | |
| | | @ApiOperation(value = "获取用户业绩接口 type 1-今日 2-昨天 3-本月 4-上月") |
| | | @GetMapping(value = "/findUserAchieve/{type}") |
| | | public AjaxResult findUserAchieve(@PathVariable("type") Integer type) { |
| | | return null; |
| | | } |
| | | |
| | | |
| | | } |