|
|
@@ -597,5 +597,77 @@ export interface QhjMgrTradeDetailRsp {
|
|
|
userinfotype: number;//账户类型 1-个人 2-企业
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ *
|
|
|
+ * 查询委托明细请求
|
|
|
+ *
|
|
|
+ */
|
|
|
+export interface QuerySpotGoodsPrice {
|
|
|
+ userid: number // 用户ID
|
|
|
+}
|
|
|
|
|
|
|
|
|
+export interface Ermcp3SpotGoodsPrice{
|
|
|
+ areauserid :number;//所属机构id
|
|
|
+ brandname :string;//品牌名称
|
|
|
+ currencyid :number;//报价货币ID
|
|
|
+ currencyname :string;//币种名称
|
|
|
+ deliverygoodscode :string;//现货商品代码
|
|
|
+ deliverygoodsid :number;//现货商品id
|
|
|
+ deliverygoodsname :string;//现货商品名称
|
|
|
+ enumdicname :string;//现货商品单位名称
|
|
|
+ gbenumdicname :string;//品类单位名称
|
|
|
+ gmunitid :number;//品类单位id
|
|
|
+ isvalid :number;//是否有效 - number;
|
|
|
+//:无效 1:有效
|
|
|
+ operateid :number;//最后操作人
|
|
|
+ operatesrc :number;//最后操作来源 - 1:管理端 2:终端
|
|
|
+ operatetime :string;//最后操作时间
|
|
|
+ operatorname :string;//操作人名称
|
|
|
+ spotgoodsbrandid :number;//现货品牌ID(通用则为number;
|
|
|
+//, 不为number;
|
|
|
+//则须先有品类ID)
|
|
|
+ spotgoodsprice :number;//现货价格
|
|
|
+ tradedate :string;//交易日(yyyyMMdd)
|
|
|
+ unitid :number;//现货商品单位id
|
|
|
+ wrstandardcode :string;//品类代码
|
|
|
+ wrstandardid :number;//现货品类ID(通用则为number;
|
|
|
+//)
|
|
|
+ wrstandardname :string;//品类名称
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+export interface QuerySpotGoodsPriceLogReq {
|
|
|
+ userid: number // 用户ID
|
|
|
+ deliverygoodsid: number // 现货商品ID
|
|
|
+ brandid?: number // 品牌ID
|
|
|
+ wrstandardid?: number // 品类ID
|
|
|
+}
|
|
|
+
|
|
|
+export interface Ermcp3SpotGoodsPriceLog{
|
|
|
+ areauserid :number;//所属机构id
|
|
|
+ brandname :string;//品牌名称
|
|
|
+ currencyid :number;//报价货币ID
|
|
|
+ deliverygoodscode :string;//现货商品代码
|
|
|
+ deliverygoodsid :number;//现货商品id
|
|
|
+ deliverygoodsname :string;//现货商品名称
|
|
|
+ enumdicname :string;//现货商品单位名称
|
|
|
+ gbenumdicname :string;//品类单位名称
|
|
|
+ gmunitid :number;//品类单位id
|
|
|
+ logid :number;//日志id
|
|
|
+ operateid :number;//最后操作人
|
|
|
+ operatesrc :number;//最后操作来源 - 1:管理端 2:终端
|
|
|
+ operatetime :string;//最后操作时间
|
|
|
+ operatorname :string;//操作人名称
|
|
|
+ spotgoodsbrandid :number;//现货品牌ID(通用则为number;
|
|
|
+//, 不为number;
|
|
|
+//则须先有品类ID)
|
|
|
+ spotgoodsprice :number;//现货价格
|
|
|
+ tradedate :string;//交易日(yyyyMMdd)
|
|
|
+ unitid :number;//现货商品单位id
|
|
|
+ wrstandardcode :string;//品类代码
|
|
|
+ wrstandardid :number;//现货品类ID(通用则为number;
|
|
|
+//)
|
|
|
+ wrstandardname :string;//品类名称
|
|
|
+}
|
|
|
+
|