|
|
@@ -708,3 +708,38 @@ message CancelPaymentRsp {
|
|
|
optional string RetDesc = 3; // string 描述信息
|
|
|
optional uint64 TradeID = 4; // uint64 成交单号
|
|
|
}
|
|
|
+
|
|
|
+// 现货品种申请请求 0 29 124
|
|
|
+message DeliveryGoodsApplyReq {
|
|
|
+ optional MessageHead Header = 1; // MessageHead
|
|
|
+ optional string version = 2; // string 接口版本号(目前支持2.0 3.1 3.2)
|
|
|
+ optional uint64 userid = 3; // uint64 用户ID
|
|
|
+ optional uint64 loginid = 4; // uint64 登录ID
|
|
|
+ optional string deliverygoodscode = 5; // string 交割商品代码(新增时有值)
|
|
|
+ optional string deliverygoodsname = 6; // string 交割商品名称(新增时有值)
|
|
|
+ optional uint64 deliverygoodsid = 7; // uint64 交割商品id(修改时有值)
|
|
|
+ optional uint64 unitid = 8; // uint64 单位ID
|
|
|
+ optional int32 type = 9; // int32 类型 1 新增 2 修改
|
|
|
+ optional string remark = 10; // string 备注
|
|
|
+ repeated GLDWRStandardEx gldwrstandards = 11; // GLDWRStandardEx 现货商品型号数据
|
|
|
+ repeated GLDDGFactoryItemEx glddgfactoryItems = 12; // GLDDGFactoryItemEx 现货商品品牌数据
|
|
|
+ repeated WRSConvertDetailEx wrsconvertdetails = 13; // WRSConvertDetailEx 现货商品折算配置明细数据
|
|
|
+}
|
|
|
+// 现货商品型号数据 0 29 172
|
|
|
+message GLDWRStandardEx {
|
|
|
+ optional uint64 wrstandardid = 1; // uint64 型号ID(修改时有值)
|
|
|
+ optional string wrstandardname = 2; // string 型号名称
|
|
|
+ optional uint64 unitid = 3; // uint64 单位ID
|
|
|
+ optional double convertfactor = 4; // double 标仓系数(接口为3.1及以上版本时传)
|
|
|
+}
|
|
|
+// 现货商品品牌数据 0 29 173
|
|
|
+message GLDDGFactoryItemEx {
|
|
|
+ optional uint64 dgfactoryitemid = 1; // uint64 品牌ID(修改时有值)
|
|
|
+ optional string dgfactoryitemvalue = 2; // string 品牌名称
|
|
|
+}
|
|
|
+// 现货商品折算配置明细数据 0 29 127
|
|
|
+message WRSConvertDetailEx {
|
|
|
+ optional uint64 middlegoodsid = 1; // uint64 套保品种ID(接口为3.1及以下版本时传套保品种ID,否则传期货品种ID)
|
|
|
+ optional uint64 unitid = 2; // uint64 单位ID
|
|
|
+ optional double convertratio = 3; // double 套保系数
|
|
|
+}
|