|
|
@@ -414,4 +414,41 @@ export interface QhjMgrSubArea{
|
|
|
usertype :number;//账户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户 7:企业成员(云平台)
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * 查询交易持仓
|
|
|
+ */
|
|
|
+export interface QueryTradePositionReq {
|
|
|
+ userid: number // 用户ID
|
|
|
+ userinfotype? : number // 用户类型 1-个人 2-企业
|
|
|
+ goodsid?: number // 商品id
|
|
|
+ filtername?: string // 名称(模糊搜索账户)
|
|
|
+ includesub?: number // 是否包含子级 1-包含
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 查询交易持仓返回
|
|
|
+ */
|
|
|
+export interface QhjMgrPosition{
|
|
|
+ accountid :number;//账号Id
|
|
|
+ accountname :string;//用户名称
|
|
|
+ agreeunit :number;//合约乘数
|
|
|
+ averageprice :number;//均价
|
|
|
+ avialqty :number;//可用数量
|
|
|
+ decimalplace :number;//报价小数位
|
|
|
+ enumdicname :string;//单位名称(商品)
|
|
|
+ frozenqty :number;//冻结数量
|
|
|
+ goodscode :string;//商品代码(内部)
|
|
|
+ goodsid :number;//商品Id
|
|
|
+ goodsname :string;//商品名称
|
|
|
+ goodunitid :number;//报价单位ID
|
|
|
+ holderamount :number;//金额
|
|
|
+ holderqty :number;//持有数量
|
|
|
+ holdertype :number;//持仓类别 - 1:单边持仓 2:双边持仓
|
|
|
+ logincode :string;//登录代码(账户)
|
|
|
+ qtydecimalplace :number;//成交量小数位
|
|
|
+ userid :number;//用户id
|
|
|
+ userinfotype :number;//账户类型 1-个人 2-企业
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
|