WebExchangeRateController.java
580 Bytes
package com.lhcredit.project.webbusiness.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import com.lhcredit.project.business.exchangeRate.service.IExchangeRateService;
import com.lhcredit.framework.web.controller.BaseController;
/**
* 汇率信息对外接口
*
* @author lhcredit
* @date 2025-03-18
*/
@RestController
@RequestMapping("/web/exchangeRate")
public class WebExchangeRateController extends BaseController {
@Autowired
private IExchangeRateService exchangeRateService;
}