| | |
| | | import com.ruoyi.sales.service.impl.MetricStatisticsServiceImpl; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | |
| | | @Api(tags = "指标统计") |
| | | @RestController |
| | | @RequestMapping("/metricStatistics") |
| | | @AllArgsConstructor |
| | | public class MetricStatisticsController extends BaseController { |
| | | |
| | | @Autowired |
| | | private MetricStatisticsServiceImpl metricStatisticsService; |
| | | |
| | | @ApiOperation("头部总计") |