WebReportDataSourceFieldController.java 1.19 KB
package com.lhcredit.project.webbusiness.controller;

import java.util.Date;
import java.util.List;

import com.lhcredit.common.utils.StringUtils;
import com.lhcredit.common.utils.security.ShiroUtils;
import com.lhcredit.framework.aspectj.lang.enums.OperatorType;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import com.lhcredit.framework.aspectj.lang.annotation.Log;
import com.lhcredit.framework.aspectj.lang.enums.BusinessType;
import com.lhcredit.project.business.reportDataSourceField.domain.ReportDataSourceField;
import com.lhcredit.project.business.reportDataSourceField.service.IReportDataSourceFieldService;
import com.lhcredit.framework.web.controller.BaseController;
import com.lhcredit.framework.web.domain.AjaxResult;


/**
 * 报告数据源字段信息对外接口
 *
 * @author lhcredit
 * @date 2024-08-07
 */
@RestController
@RequestMapping("/web/reportDataSourceField")
public class WebReportDataSourceFieldController extends BaseController {
    @Autowired
    private IReportDataSourceFieldService reportDataSourceFieldService;



}