|
|
@@ -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;//更新时间
|
|
|
+}
|
|
|
+
|
|
|
+
|