package com.matrix.system.app.action; 
 | 
  
 | 
import com.matrix.core.pojo.AjaxResult; 
 | 
import com.matrix.system.app.vo.RankingDto; 
 | 
import io.swagger.annotations.Api; 
 | 
import io.swagger.annotations.ApiOperation; 
 | 
import io.swagger.annotations.ApiResponse; 
 | 
import io.swagger.annotations.ApiResponses; 
 | 
import org.springframework.web.bind.annotation.RequestMapping; 
 | 
import org.springframework.web.bind.annotation.RestController; 
 | 
  
 | 
/** 
 | 
 * @author wzy 
 | 
 * @date 2020-12-28 
 | 
 **/ 
 | 
@Api(value = "ApiRankingAction", tags = "排行榜接口类") 
 | 
@RestController 
 | 
@RequestMapping(value ="/api/ranking") 
 | 
public class ApiRankingAction { 
 | 
  
 | 
    public AjaxResult findStaffAchieveRanking() { 
 | 
        return null; 
 | 
    } 
 | 
  
 | 
    @ApiOperation(value = "门店业绩排行榜", notes = "门店业绩排行榜") 
 | 
    @ApiResponses({ 
 | 
            @ApiResponse(code = 200, message = "ok", response = RankingDto.class) 
 | 
    }) 
 | 
    public AjaxResult findShopAchieveRanking() { 
 | 
        return null; 
 | 
    } 
 | 
  
 | 
    public AjaxResult findBeauticianAchieveRanking() { 
 | 
        return null; 
 | 
    } 
 | 
} 
 |