| 12345678910111213 |
- import { httpRequest } from '../../../services/http/index'
- import { HttpRequest } from '../../../services/http/interface'
- import service from '../../../services'
- /* 查询汇率信息 */
- export function queryRates(params: HttpRequest<{req: GuangZuan.RatesReq, rsp: GuangZuan.Rates[]}>) {
- return httpRequest(service.config.goCommonSearchUrl+'/Common/QueryRates', 'GET', params)
- }
- /* 通知公告系统消息查询 */
- export function queryNotice(params: HttpRequest<{req: GuangZuan.NoticeReq, rsp: GuangZuan.Notice[]}>) {
- return httpRequest(service.config.goCommonSearchUrl+'/Common/QueryNotice', 'GET', params)
- }
|