WebExchangeRateController.java 1.23 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 com.lhcredit.project.business.reportMake.ReportOverseasMakeService;
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.exchangeRate.domain.ExchangeRate;
import com.lhcredit.project.business.exchangeRate.service.IExchangeRateService;
import com.lhcredit.framework.web.controller.BaseController;
import com.lhcredit.framework.web.domain.AjaxResult;


/**
 * 汇率信息对外接口
 *
 * @author lhcredit
 * @date 2025-03-18
 */
@RestController
@RequestMapping("/web/exchangeRate")
public class WebExchangeRateController extends BaseController {
    @Autowired
    private IExchangeRateService exchangeRateService;
    @Autowired
    private ReportOverseasMakeService service;


}