import { httpRequest } from '../../../services/http/index' import { HttpRequest } from '../../../services/http/interface' import service from '../../../services/index' /* 查询汇率信息 */ 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) } /* 查询轮播图配置信息 */ export function queryImageConfigs(params: HttpRequest<{req: GuangZuan.QueryImageConfigsReq, rsp: GuangZuan.QueryImageConfigs[]}>) { return httpRequest(service.config.goCommonSearchUrl+'/Common/QueryImageConfigs', 'GET', params) }