DataAnalysisController.java 1.3 KB
package com.skua.modules.dataAnalysis.controller;

/**
 * @auther kangwei
 * @create 2025-02-20-10:27
 */

import com.skua.core.api.vo.Result;
import com.skua.core.aspect.annotation.AutoLog;
import com.skua.core.context.BaseContextHandler;
import com.skua.modules.algorithm.service.impl.ReportItemvService;
import com.skua.modules.custom.service.IFCustomReportDatasetService;
import com.skua.modules.report.vo.FRportlCommandCenterVO;
import com.skua.modules.report.vo.ReportItemvParam;
import com.skua.modules.report.vo.largeScreen.ResultNumberVO;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

/**
 * 报表数据分析
 */
@Slf4j
@Api(tags="报表数据分析")
@RestController
@RequestMapping("/v1/dataAnalysis")
public class DataAnalysisController {

    @Autowired
    private ReportItemvService reportItemvService;
    @Autowired
    private IFCustomReportDatasetService reportDatasetService;


}