|
|
@@ -64,3 +64,94 @@ export interface Ermcp3Brand{
|
|
|
deliverygoodsid :number;//品种ID
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * 查询新货商品详情
|
|
|
+ */
|
|
|
+export interface ErmcpDeliveryGoodsDetailEx{
|
|
|
+ data: ErmcpDeliveryGoods; // 现货商品信息
|
|
|
+ gblist: Ermcp3Brand[]; // 品牌
|
|
|
+ gmlist: Ermcp3Wrstandard[]; // 品类列表
|
|
|
+ mgList: Ermcp3MiddleGoodsDetail2[]; // 套保列表
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 现货商品信息
|
|
|
+ */
|
|
|
+export interface ErmcpDeliveryGoods{
|
|
|
+ agreeunit :number;//合约单位[散货时默认为1, 整装时默认为标准数量]
|
|
|
+ areauserid :number;//所属机构
|
|
|
+ auditflag :number;//交割是否需要审核 - number;
|
|
|
+//:不需要 1:需要审核 默认为number;//
|
|
|
+ categoryid :number;//类别ID(SEQ_WRCATEGORY)
|
|
|
+ deliverygoodscode :string;//现货品种代码
|
|
|
+ deliverygoodsid :number;//现货品种ID(SEQ_DELIVERYGOODS)
|
|
|
+ deliverygoodsname :string;//现货品种名称
|
|
|
+ deliverygoodstype :number;//现货品种类型: 1-整装不拆分 2-散装记录明细 3:整装拆分 4:散装不记录明细
|
|
|
+ dgstatus :number;//品种状态 - 作废 - number;
|
|
|
+//:未激活 1:正常
|
|
|
+ enumdicname :string;//现货品种单位名称
|
|
|
+ goodsunitid :number;//现货品种单位ID
|
|
|
+ isvalid :number;//是否有效 - number;
|
|
|
+//:无效 1:有效
|
|
|
+ qtydecimalplace :number;//成交量小数位
|
|
|
+ remark :string;//备注
|
|
|
+ standardqty :number;//标准数量(库位数量) [标准品特有]
|
|
|
+ standardqtyrange :number;//标准数量偏差范围 [标准品特有]
|
|
|
+}
|
|
|
+
|
|
|
+export interface Ermcp3MiddleGoodsDetail2{
|
|
|
+ convertratio: number // 套保系数(折算系数)
|
|
|
+ gplist: Ermcp3GoodsGroupEx[] // 关联商品组列表
|
|
|
+ mg: ErmcpMiddleGoodsModel[] // 套保品种
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 套保品种
|
|
|
+ */
|
|
|
+export interface ErmcpMiddleGoodsModel{
|
|
|
+ areauserid :number;//机构用户ID
|
|
|
+ createtime :string;//修改时间
|
|
|
+ enumdicname :string;//单位名称
|
|
|
+ evaluateratio :number;//估价系数
|
|
|
+ goodsgroupid :number;//关联期货品种ID
|
|
|
+ goodsunitid :number;//单位ID
|
|
|
+ isvalid :number;//状态 number;
|
|
|
+//-无效(停用) 1-有效(正常)
|
|
|
+ middlegoodscode :string;//套保品种代码
|
|
|
+ middlegoodsid :number;//套保品种ID(SEQ_ERMS_MIDDLEGOODS)
|
|
|
+ middlegoodsname :string;//套保品种名称
|
|
|
+ modifytime :string;//修改时间
|
|
|
+ needhedgeratio :number;//套保比率
|
|
|
+ qtydecimalplace :number;//数量小数位
|
|
|
+ relatedgoodsid :number;//关联交易商品ID
|
|
|
+ relatedgoodstype :number;//关联商品类型 - 1:期货合约 2:现货品种
|
|
|
+ remark :string;//备注
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 期货商品信息
|
|
|
+ */
|
|
|
+export interface Ermcp3Goods{
|
|
|
+ agreeunit :number;//合约单位(合约乘数)
|
|
|
+ enumdicname :string;//单位名称
|
|
|
+ exexchangecode :string;//交易所代码
|
|
|
+ goodscode :string;//期货商品代码
|
|
|
+ goodsid :number;//期货商品id
|
|
|
+ goodsname :string;//期货商品名称
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 商品组信息
|
|
|
+ */
|
|
|
+export interface Ermcp3GoodsGroupEx{
|
|
|
+ convertratio :number;//折算系数(品种系数)
|
|
|
+ enumdicname :string;//单位名称
|
|
|
+ exexchangecode :string;//交易所代码
|
|
|
+ glist: Ermcp3Goods[]
|
|
|
+ goodsgroupid :number;//商品组id
|
|
|
+ goodsgroupname :string;//商品组名称
|
|
|
+ goodsunitid :number;//单位id
|
|
|
+ middlegoodsid :number;//套保商品id
|
|
|
+}
|
|
|
+
|
|
|
+
|