yu.jie 4 年之前
父节点
当前提交
0cd0e5bd29
共有 2 个文件被更改,包括 31 次插入1 次删除
  1. 11 1
      src/services/go/ermcp/business-review/index.ts
  2. 20 0
      src/services/go/ermcp/business-review/interface.ts

+ 11 - 1
src/services/go/ermcp/business-review/index.ts

@@ -2,10 +2,11 @@
 import { getUserId } from '@/services/bus/account';
 import { commonSearch_go } from "@/services/go";
 import {
+    ErmcpTradeConfigTMP,
     QryBusinessDjRsp,
     QryBussinessJsRsp,
     QueryBusinessDjReq,
-    QueryBusinessJsReq
+    QueryBusinessJsReq, QueryTradeConfigTMPReq
 } from "@/services/go/ermcp/business-review/interface";
 
 /**
@@ -38,3 +39,12 @@ export function QueryBusinessDj(req: QueryBusinessDjReq): Promise<QryBusinessDjR
     });
 }
 
+/**
+ * 查询交易模板配置 /Ermcp/QueryTradeConfigTMP
+ */
+export function QueryTradeConfigTMP(req: QueryTradeConfigTMPReq): Promise<ErmcpTradeConfigTMP> {
+    return commonSearch_go('/Ermcp/QueryTradeConfigTMP', req).catch((err) => {
+        throw new Error(`查询交易模板配置: ${err.message}`);
+    });
+}
+

+ 20 - 0
src/services/go/ermcp/business-review/interface.ts

@@ -98,3 +98,23 @@ export interface QryBusinessDjRsp {
     wrstandardname: string;//品类名称
 }
 
+/**
+ * 查询交易模板配置 请求
+ */
+export interface QueryTradeConfigTMPReq {
+    areauserid?: number
+}
+
+export interface ErmcpTradeConfigTMP {
+    areauserid      :number;//所属机构
+    basiccurrencyid :number;//基本币种ID[汇率] - 目标币种
+    mainaccountid   :number;//主账户ID
+    modifierid      :number;//修改人
+    remark  :string;//备注
+    tradeconfigtmpid        :number;//交易配置模板ID(SEQ_TRADECONFIGTMP)
+    tradeconfigtmpname      :string;//交易配置模板名称
+    tradeconfigtmptype      :number;//交易配置模板类型 - 1:保证金 2:手续费 3:汇率
+    updatetime      :string;//更新时间
+}
+
+