Преглед на файлове

联调问题修改、增加现货市价ermcp3接口(更新swag)

zou.yingbin преди 4 години
родител
ревизия
8a8e28f171
променени са 3 файла, в които са добавени 832 реда и са изтрити 6 реда
  1. 307 2
      docs/docs.go
  2. 307 2
      docs/swagger.json
  3. 218 2
      docs/swagger.yaml

+ 307 - 2
docs/docs.go

@@ -5268,6 +5268,97 @@ var doc = `{
                 }
             }
         },
+        "/Ermcp3/QuerySpotGoodsPrice": {
+            "get": {
+                "security": [
+                    {
+                        "ApiKeyAuth": []
+                    }
+                ],
+                "produces": [
+                    "application/json"
+                ],
+                "tags": [
+                    "企业风险管理v3(app)"
+                ],
+                "summary": "查询现货市价(现货市价)",
+                "parameters": [
+                    {
+                        "type": "integer",
+                        "description": "用户ID",
+                        "name": "userid",
+                        "in": "query",
+                        "required": true
+                    }
+                ],
+                "responses": {
+                    "200": {
+                        "description": "OK",
+                        "schema": {
+                            "type": "array",
+                            "items": {
+                                "$ref": "#/definitions/models.Ermcp3SpotGoodsPrice"
+                            }
+                        }
+                    },
+                    "500": {
+                        "description": "Internal Server Error",
+                        "schema": {
+                            "$ref": "#/definitions/app.Response"
+                        }
+                    }
+                }
+            }
+        },
+        "/Ermcp3/QuerySpotGoodsPriceLog": {
+            "get": {
+                "security": [
+                    {
+                        "ApiKeyAuth": []
+                    }
+                ],
+                "produces": [
+                    "application/json"
+                ],
+                "tags": [
+                    "企业风险管理v3(app)"
+                ],
+                "summary": "查询现货市价详情(现货市价/详情)",
+                "parameters": [
+                    {
+                        "type": "integer",
+                        "description": "用户ID",
+                        "name": "userid",
+                        "in": "query",
+                        "required": true
+                    },
+                    {
+                        "type": "integer",
+                        "description": "现货商品ID",
+                        "name": "deliverygoodsid",
+                        "in": "query",
+                        "required": true
+                    }
+                ],
+                "responses": {
+                    "200": {
+                        "description": "OK",
+                        "schema": {
+                            "type": "array",
+                            "items": {
+                                "$ref": "#/definitions/models.Ermcp3SpotGoodsPriceLog"
+                            }
+                        }
+                    },
+                    "500": {
+                        "description": "Internal Server Error",
+                        "schema": {
+                            "$ref": "#/definitions/app.Response"
+                        }
+                    }
+                }
+            }
+        },
         "/Erms2/QueryArbitrageStrategy": {
             "get": {
                 "security": [
@@ -13182,6 +13273,10 @@ var doc = `{
                     "description": "品牌名称",
                     "type": "string"
                 },
+                "buynickname": {
+                    "description": "采购方昵称",
+                    "type": "string"
+                },
                 "buyuserid": {
                     "description": "采购方userid",
                     "type": "integer"
@@ -13234,6 +13329,10 @@ var doc = `{
                     "description": "数量",
                     "type": "number"
                 },
+                "sellnickname": {
+                    "description": "销售方昵称",
+                    "type": "string"
+                },
                 "selluserid": {
                     "description": "销售方userid",
                     "type": "integer"
@@ -13280,7 +13379,7 @@ var doc = `{
                 },
                 "wrstandardid": {
                     "description": "品类ID",
-                    "type": "string"
+                    "type": "integer"
                 },
                 "wrstandardname": {
                     "description": "品类名称",
@@ -13414,7 +13513,7 @@ var doc = `{
                 },
                 "wrstandardid": {
                     "description": "品类ID",
-                    "type": "string"
+                    "type": "integer"
                 },
                 "wrstandardname": {
                     "description": "品类名称",
@@ -14290,6 +14389,184 @@ var doc = `{
                 }
             }
         },
+        "models.Ermcp3SpotGoodsPrice": {
+            "type": "object",
+            "properties": {
+                "areauserid": {
+                    "description": "所属机构id",
+                    "type": "integer"
+                },
+                "brandname": {
+                    "description": "品牌名称",
+                    "type": "string"
+                },
+                "currencyid": {
+                    "description": "报价货币ID",
+                    "type": "integer"
+                },
+                "deliverygoodscode": {
+                    "description": "现货商品代码",
+                    "type": "string"
+                },
+                "deliverygoodsid": {
+                    "description": "现货商品id",
+                    "type": "integer"
+                },
+                "deliverygoodsname": {
+                    "description": "现货商品名称",
+                    "type": "string"
+                },
+                "enumdicname": {
+                    "description": "现货商品单位名称",
+                    "type": "string"
+                },
+                "gbenumdicname": {
+                    "description": "品类单位名称",
+                    "type": "string"
+                },
+                "gmunitid": {
+                    "description": "品类单位id",
+                    "type": "integer"
+                },
+                "isvalid": {
+                    "description": "是否有效 - 0:无效 1:有效",
+                    "type": "integer"
+                },
+                "operateid": {
+                    "description": "最后操作人",
+                    "type": "integer"
+                },
+                "operatesrc": {
+                    "description": "最后操作来源 - 1:管理端 2:终端",
+                    "type": "integer"
+                },
+                "operatetime": {
+                    "description": "最后操作时间",
+                    "type": "string"
+                },
+                "operatorname": {
+                    "description": "操作人名称",
+                    "type": "string"
+                },
+                "spotgoodsbrandid": {
+                    "description": "现货品牌ID(通用则为0, 不为0则须先有品类ID)",
+                    "type": "integer"
+                },
+                "spotgoodsprice": {
+                    "description": "现货价格",
+                    "type": "number"
+                },
+                "tradedate": {
+                    "description": "交易日(yyyyMMdd)",
+                    "type": "string"
+                },
+                "unitid": {
+                    "description": "现货商品单位id",
+                    "type": "integer"
+                },
+                "wrstandardcode": {
+                    "description": "品类代码",
+                    "type": "string"
+                },
+                "wrstandardid": {
+                    "description": "现货品类ID(通用则为0)",
+                    "type": "integer"
+                },
+                "wrstandardname": {
+                    "description": "品类名称",
+                    "type": "string"
+                }
+            }
+        },
+        "models.Ermcp3SpotGoodsPriceLog": {
+            "type": "object",
+            "properties": {
+                "areauserid": {
+                    "description": "所属机构id",
+                    "type": "integer"
+                },
+                "brandname": {
+                    "description": "品牌名称",
+                    "type": "string"
+                },
+                "currencyid": {
+                    "description": "报价货币ID",
+                    "type": "integer"
+                },
+                "deliverygoodscode": {
+                    "description": "现货商品代码",
+                    "type": "string"
+                },
+                "deliverygoodsid": {
+                    "description": "现货商品id",
+                    "type": "integer"
+                },
+                "deliverygoodsname": {
+                    "description": "现货商品名称",
+                    "type": "string"
+                },
+                "enumdicname": {
+                    "description": "现货商品单位名称",
+                    "type": "string"
+                },
+                "gbenumdicname": {
+                    "description": "品类单位名称",
+                    "type": "string"
+                },
+                "gmunitid": {
+                    "description": "品类单位id",
+                    "type": "integer"
+                },
+                "logid": {
+                    "description": "日志id",
+                    "type": "integer"
+                },
+                "operateid": {
+                    "description": "最后操作人",
+                    "type": "integer"
+                },
+                "operatesrc": {
+                    "description": "最后操作来源 - 1:管理端 2:终端",
+                    "type": "integer"
+                },
+                "operatetime": {
+                    "description": "最后操作时间",
+                    "type": "string"
+                },
+                "operatorname": {
+                    "description": "操作人名称",
+                    "type": "string"
+                },
+                "spotgoodsbrandid": {
+                    "description": "现货品牌ID(通用则为0, 不为0则须先有品类ID)",
+                    "type": "integer"
+                },
+                "spotgoodsprice": {
+                    "description": "现货价格",
+                    "type": "number"
+                },
+                "tradedate": {
+                    "description": "交易日(yyyyMMdd)",
+                    "type": "string"
+                },
+                "unitid": {
+                    "description": "现货商品单位id",
+                    "type": "integer"
+                },
+                "wrstandardcode": {
+                    "description": "品类代码",
+                    "type": "string"
+                },
+                "wrstandardid": {
+                    "description": "现货品类ID(通用则为0)",
+                    "type": "integer"
+                },
+                "wrstandardname": {
+                    "description": "品类名称",
+                    "type": "string"
+                }
+            }
+        },
         "models.Ermcp3Wrstandard": {
             "type": "object",
             "properties": {
@@ -14297,6 +14574,10 @@ var doc = `{
                     "description": "所属机构",
                     "type": "integer"
                 },
+                "convertfactor": {
+                    "description": "标仓系数",
+                    "type": "number"
+                },
                 "createtime": {
                     "description": "创建时间",
                     "type": "string"
@@ -14998,6 +15279,10 @@ var doc = `{
                     "description": "成交量小数位",
                     "type": "integer"
                 },
+                "remark": {
+                    "description": "备注",
+                    "type": "string"
+                },
                 "standardqty": {
                     "description": "标准数量(库位数量) [标准品特有]",
                     "type": "integer"
@@ -15699,10 +15984,18 @@ var doc = `{
                     "description": "所属会员id",
                     "type": "integer"
                 },
+                "mobile": {
+                    "description": "手机号",
+                    "type": "string"
+                },
                 "modifytime": {
                     "description": "修改时间",
                     "type": "string"
                 },
+                "password": {
+                    "description": "密码(不可解密)",
+                    "type": "string"
+                },
                 "rolename": {
                     "description": "角色名称",
                     "type": "string"
@@ -17679,6 +17972,10 @@ var doc = `{
                     "description": "市",
                     "type": "integer"
                 },
+                "contactname": {
+                    "description": "联系人",
+                    "type": "string"
+                },
                 "countryid": {
                     "description": "国家",
                     "type": "integer"
@@ -17695,6 +17992,10 @@ var doc = `{
                     "description": "区域",
                     "type": "integer"
                 },
+                "legalpersonname": {
+                    "description": "法人姓名(企业)",
+                    "type": "string"
+                },
                 "memberuserid": {
                     "description": "所属机构ID",
                     "type": "integer"
@@ -17727,6 +18028,10 @@ var doc = `{
                     "description": "账户状态中文描述",
                     "type": "string"
                 },
+                "taxpayernum": {
+                    "description": "纳税人识别号",
+                    "type": "string"
+                },
                 "telphone": {
                     "description": "联系电话",
                     "type": "string"

+ 307 - 2
docs/swagger.json

@@ -5252,6 +5252,97 @@
                 }
             }
         },
+        "/Ermcp3/QuerySpotGoodsPrice": {
+            "get": {
+                "security": [
+                    {
+                        "ApiKeyAuth": []
+                    }
+                ],
+                "produces": [
+                    "application/json"
+                ],
+                "tags": [
+                    "企业风险管理v3(app)"
+                ],
+                "summary": "查询现货市价(现货市价)",
+                "parameters": [
+                    {
+                        "type": "integer",
+                        "description": "用户ID",
+                        "name": "userid",
+                        "in": "query",
+                        "required": true
+                    }
+                ],
+                "responses": {
+                    "200": {
+                        "description": "OK",
+                        "schema": {
+                            "type": "array",
+                            "items": {
+                                "$ref": "#/definitions/models.Ermcp3SpotGoodsPrice"
+                            }
+                        }
+                    },
+                    "500": {
+                        "description": "Internal Server Error",
+                        "schema": {
+                            "$ref": "#/definitions/app.Response"
+                        }
+                    }
+                }
+            }
+        },
+        "/Ermcp3/QuerySpotGoodsPriceLog": {
+            "get": {
+                "security": [
+                    {
+                        "ApiKeyAuth": []
+                    }
+                ],
+                "produces": [
+                    "application/json"
+                ],
+                "tags": [
+                    "企业风险管理v3(app)"
+                ],
+                "summary": "查询现货市价详情(现货市价/详情)",
+                "parameters": [
+                    {
+                        "type": "integer",
+                        "description": "用户ID",
+                        "name": "userid",
+                        "in": "query",
+                        "required": true
+                    },
+                    {
+                        "type": "integer",
+                        "description": "现货商品ID",
+                        "name": "deliverygoodsid",
+                        "in": "query",
+                        "required": true
+                    }
+                ],
+                "responses": {
+                    "200": {
+                        "description": "OK",
+                        "schema": {
+                            "type": "array",
+                            "items": {
+                                "$ref": "#/definitions/models.Ermcp3SpotGoodsPriceLog"
+                            }
+                        }
+                    },
+                    "500": {
+                        "description": "Internal Server Error",
+                        "schema": {
+                            "$ref": "#/definitions/app.Response"
+                        }
+                    }
+                }
+            }
+        },
         "/Erms2/QueryArbitrageStrategy": {
             "get": {
                 "security": [
@@ -13166,6 +13257,10 @@
                     "description": "品牌名称",
                     "type": "string"
                 },
+                "buynickname": {
+                    "description": "采购方昵称",
+                    "type": "string"
+                },
                 "buyuserid": {
                     "description": "采购方userid",
                     "type": "integer"
@@ -13218,6 +13313,10 @@
                     "description": "数量",
                     "type": "number"
                 },
+                "sellnickname": {
+                    "description": "销售方昵称",
+                    "type": "string"
+                },
                 "selluserid": {
                     "description": "销售方userid",
                     "type": "integer"
@@ -13264,7 +13363,7 @@
                 },
                 "wrstandardid": {
                     "description": "品类ID",
-                    "type": "string"
+                    "type": "integer"
                 },
                 "wrstandardname": {
                     "description": "品类名称",
@@ -13398,7 +13497,7 @@
                 },
                 "wrstandardid": {
                     "description": "品类ID",
-                    "type": "string"
+                    "type": "integer"
                 },
                 "wrstandardname": {
                     "description": "品类名称",
@@ -14274,6 +14373,184 @@
                 }
             }
         },
+        "models.Ermcp3SpotGoodsPrice": {
+            "type": "object",
+            "properties": {
+                "areauserid": {
+                    "description": "所属机构id",
+                    "type": "integer"
+                },
+                "brandname": {
+                    "description": "品牌名称",
+                    "type": "string"
+                },
+                "currencyid": {
+                    "description": "报价货币ID",
+                    "type": "integer"
+                },
+                "deliverygoodscode": {
+                    "description": "现货商品代码",
+                    "type": "string"
+                },
+                "deliverygoodsid": {
+                    "description": "现货商品id",
+                    "type": "integer"
+                },
+                "deliverygoodsname": {
+                    "description": "现货商品名称",
+                    "type": "string"
+                },
+                "enumdicname": {
+                    "description": "现货商品单位名称",
+                    "type": "string"
+                },
+                "gbenumdicname": {
+                    "description": "品类单位名称",
+                    "type": "string"
+                },
+                "gmunitid": {
+                    "description": "品类单位id",
+                    "type": "integer"
+                },
+                "isvalid": {
+                    "description": "是否有效 - 0:无效 1:有效",
+                    "type": "integer"
+                },
+                "operateid": {
+                    "description": "最后操作人",
+                    "type": "integer"
+                },
+                "operatesrc": {
+                    "description": "最后操作来源 - 1:管理端 2:终端",
+                    "type": "integer"
+                },
+                "operatetime": {
+                    "description": "最后操作时间",
+                    "type": "string"
+                },
+                "operatorname": {
+                    "description": "操作人名称",
+                    "type": "string"
+                },
+                "spotgoodsbrandid": {
+                    "description": "现货品牌ID(通用则为0, 不为0则须先有品类ID)",
+                    "type": "integer"
+                },
+                "spotgoodsprice": {
+                    "description": "现货价格",
+                    "type": "number"
+                },
+                "tradedate": {
+                    "description": "交易日(yyyyMMdd)",
+                    "type": "string"
+                },
+                "unitid": {
+                    "description": "现货商品单位id",
+                    "type": "integer"
+                },
+                "wrstandardcode": {
+                    "description": "品类代码",
+                    "type": "string"
+                },
+                "wrstandardid": {
+                    "description": "现货品类ID(通用则为0)",
+                    "type": "integer"
+                },
+                "wrstandardname": {
+                    "description": "品类名称",
+                    "type": "string"
+                }
+            }
+        },
+        "models.Ermcp3SpotGoodsPriceLog": {
+            "type": "object",
+            "properties": {
+                "areauserid": {
+                    "description": "所属机构id",
+                    "type": "integer"
+                },
+                "brandname": {
+                    "description": "品牌名称",
+                    "type": "string"
+                },
+                "currencyid": {
+                    "description": "报价货币ID",
+                    "type": "integer"
+                },
+                "deliverygoodscode": {
+                    "description": "现货商品代码",
+                    "type": "string"
+                },
+                "deliverygoodsid": {
+                    "description": "现货商品id",
+                    "type": "integer"
+                },
+                "deliverygoodsname": {
+                    "description": "现货商品名称",
+                    "type": "string"
+                },
+                "enumdicname": {
+                    "description": "现货商品单位名称",
+                    "type": "string"
+                },
+                "gbenumdicname": {
+                    "description": "品类单位名称",
+                    "type": "string"
+                },
+                "gmunitid": {
+                    "description": "品类单位id",
+                    "type": "integer"
+                },
+                "logid": {
+                    "description": "日志id",
+                    "type": "integer"
+                },
+                "operateid": {
+                    "description": "最后操作人",
+                    "type": "integer"
+                },
+                "operatesrc": {
+                    "description": "最后操作来源 - 1:管理端 2:终端",
+                    "type": "integer"
+                },
+                "operatetime": {
+                    "description": "最后操作时间",
+                    "type": "string"
+                },
+                "operatorname": {
+                    "description": "操作人名称",
+                    "type": "string"
+                },
+                "spotgoodsbrandid": {
+                    "description": "现货品牌ID(通用则为0, 不为0则须先有品类ID)",
+                    "type": "integer"
+                },
+                "spotgoodsprice": {
+                    "description": "现货价格",
+                    "type": "number"
+                },
+                "tradedate": {
+                    "description": "交易日(yyyyMMdd)",
+                    "type": "string"
+                },
+                "unitid": {
+                    "description": "现货商品单位id",
+                    "type": "integer"
+                },
+                "wrstandardcode": {
+                    "description": "品类代码",
+                    "type": "string"
+                },
+                "wrstandardid": {
+                    "description": "现货品类ID(通用则为0)",
+                    "type": "integer"
+                },
+                "wrstandardname": {
+                    "description": "品类名称",
+                    "type": "string"
+                }
+            }
+        },
         "models.Ermcp3Wrstandard": {
             "type": "object",
             "properties": {
@@ -14281,6 +14558,10 @@
                     "description": "所属机构",
                     "type": "integer"
                 },
+                "convertfactor": {
+                    "description": "标仓系数",
+                    "type": "number"
+                },
                 "createtime": {
                     "description": "创建时间",
                     "type": "string"
@@ -14982,6 +15263,10 @@
                     "description": "成交量小数位",
                     "type": "integer"
                 },
+                "remark": {
+                    "description": "备注",
+                    "type": "string"
+                },
                 "standardqty": {
                     "description": "标准数量(库位数量) [标准品特有]",
                     "type": "integer"
@@ -15683,10 +15968,18 @@
                     "description": "所属会员id",
                     "type": "integer"
                 },
+                "mobile": {
+                    "description": "手机号",
+                    "type": "string"
+                },
                 "modifytime": {
                     "description": "修改时间",
                     "type": "string"
                 },
+                "password": {
+                    "description": "密码(不可解密)",
+                    "type": "string"
+                },
                 "rolename": {
                     "description": "角色名称",
                     "type": "string"
@@ -17663,6 +17956,10 @@
                     "description": "市",
                     "type": "integer"
                 },
+                "contactname": {
+                    "description": "联系人",
+                    "type": "string"
+                },
                 "countryid": {
                     "description": "国家",
                     "type": "integer"
@@ -17679,6 +17976,10 @@
                     "description": "区域",
                     "type": "integer"
                 },
+                "legalpersonname": {
+                    "description": "法人姓名(企业)",
+                    "type": "string"
+                },
                 "memberuserid": {
                     "description": "所属机构ID",
                     "type": "integer"
@@ -17711,6 +18012,10 @@
                     "description": "账户状态中文描述",
                     "type": "string"
                 },
+                "taxpayernum": {
+                    "description": "纳税人识别号",
+                    "type": "string"
+                },
                 "telphone": {
                     "description": "联系电话",
                     "type": "string"

+ 218 - 2
docs/swagger.yaml

@@ -3182,6 +3182,9 @@ definitions:
       brandname:
         description: 品牌名称
         type: string
+      buynickname:
+        description: 采购方昵称
+        type: string
       buyuserid:
         description: 采购方userid
         type: integer
@@ -3221,6 +3224,9 @@ definitions:
       qty:
         description: 数量
         type: number
+      sellnickname:
+        description: 销售方昵称
+        type: string
       selluserid:
         description: 销售方userid
         type: integer
@@ -3256,7 +3262,7 @@ definitions:
         type: string
       wrstandardid:
         description: 品类ID
-        type: string
+        type: integer
       wrstandardname:
         description: 品类名称
         type: string
@@ -3355,7 +3361,7 @@ definitions:
         type: string
       wrstandardid:
         description: 品类ID
-        type: string
+        type: integer
       wrstandardname:
         description: 品类名称
         type: string
@@ -4005,11 +4011,146 @@ definitions:
         description: 品类名称
         type: string
     type: object
+  models.Ermcp3SpotGoodsPrice:
+    properties:
+      areauserid:
+        description: 所属机构id
+        type: integer
+      brandname:
+        description: 品牌名称
+        type: string
+      currencyid:
+        description: 报价货币ID
+        type: integer
+      deliverygoodscode:
+        description: 现货商品代码
+        type: string
+      deliverygoodsid:
+        description: 现货商品id
+        type: integer
+      deliverygoodsname:
+        description: 现货商品名称
+        type: string
+      enumdicname:
+        description: 现货商品单位名称
+        type: string
+      gbenumdicname:
+        description: 品类单位名称
+        type: string
+      gmunitid:
+        description: 品类单位id
+        type: integer
+      isvalid:
+        description: 是否有效 - 0:无效 1:有效
+        type: integer
+      operateid:
+        description: 最后操作人
+        type: integer
+      operatesrc:
+        description: 最后操作来源 - 1:管理端 2:终端
+        type: integer
+      operatetime:
+        description: 最后操作时间
+        type: string
+      operatorname:
+        description: 操作人名称
+        type: string
+      spotgoodsbrandid:
+        description: 现货品牌ID(通用则为0, 不为0则须先有品类ID)
+        type: integer
+      spotgoodsprice:
+        description: 现货价格
+        type: number
+      tradedate:
+        description: 交易日(yyyyMMdd)
+        type: string
+      unitid:
+        description: 现货商品单位id
+        type: integer
+      wrstandardcode:
+        description: 品类代码
+        type: string
+      wrstandardid:
+        description: 现货品类ID(通用则为0)
+        type: integer
+      wrstandardname:
+        description: 品类名称
+        type: string
+    type: object
+  models.Ermcp3SpotGoodsPriceLog:
+    properties:
+      areauserid:
+        description: 所属机构id
+        type: integer
+      brandname:
+        description: 品牌名称
+        type: string
+      currencyid:
+        description: 报价货币ID
+        type: integer
+      deliverygoodscode:
+        description: 现货商品代码
+        type: string
+      deliverygoodsid:
+        description: 现货商品id
+        type: integer
+      deliverygoodsname:
+        description: 现货商品名称
+        type: string
+      enumdicname:
+        description: 现货商品单位名称
+        type: string
+      gbenumdicname:
+        description: 品类单位名称
+        type: string
+      gmunitid:
+        description: 品类单位id
+        type: integer
+      logid:
+        description: 日志id
+        type: integer
+      operateid:
+        description: 最后操作人
+        type: integer
+      operatesrc:
+        description: 最后操作来源 - 1:管理端 2:终端
+        type: integer
+      operatetime:
+        description: 最后操作时间
+        type: string
+      operatorname:
+        description: 操作人名称
+        type: string
+      spotgoodsbrandid:
+        description: 现货品牌ID(通用则为0, 不为0则须先有品类ID)
+        type: integer
+      spotgoodsprice:
+        description: 现货价格
+        type: number
+      tradedate:
+        description: 交易日(yyyyMMdd)
+        type: string
+      unitid:
+        description: 现货商品单位id
+        type: integer
+      wrstandardcode:
+        description: 品类代码
+        type: string
+      wrstandardid:
+        description: 现货品类ID(通用则为0)
+        type: integer
+      wrstandardname:
+        description: 品类名称
+        type: string
+    type: object
   models.Ermcp3Wrstandard:
     properties:
       areauserid:
         description: 所属机构
         type: integer
+      convertfactor:
+        description: 标仓系数
+        type: number
       createtime:
         description: 创建时间
         type: string
@@ -4527,6 +4668,9 @@ definitions:
       qtydecimalplace:
         description: 成交量小数位
         type: integer
+      remark:
+        description: 备注
+        type: string
       standardqty:
         description: 标准数量(库位数量) [标准品特有]
         type: integer
@@ -5042,9 +5186,15 @@ definitions:
       memberuserid:
         description: 所属会员id
         type: integer
+      mobile:
+        description: 手机号
+        type: string
       modifytime:
         description: 修改时间
         type: string
+      password:
+        description: 密码(不可解密)
+        type: string
       rolename:
         description: 角色名称
         type: string
@@ -6506,6 +6656,9 @@ definitions:
       cityid:
         description: 市
         type: integer
+      contactname:
+        description: 联系人
+        type: string
       countryid:
         description: 国家
         type: integer
@@ -6518,6 +6671,9 @@ definitions:
       districtid:
         description: 区域
         type: integer
+      legalpersonname:
+        description: 法人姓名(企业)
+        type: string
       memberuserid:
         description: 所属机构ID
         type: integer
@@ -6542,6 +6698,9 @@ definitions:
       statusdesc:
         description: 账户状态中文描述
         type: string
+      taxpayernum:
+        description: 纳税人识别号
+        type: string
       telphone:
         description: 联系电话
         type: string
@@ -15081,6 +15240,63 @@ paths:
       summary: 查询合同(采购/销售)
       tags:
       - 企业风险管理v3(app)
+  /Ermcp3/QuerySpotGoodsPrice:
+    get:
+      parameters:
+      - description: 用户ID
+        in: query
+        name: userid
+        required: true
+        type: integer
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: OK
+          schema:
+            items:
+              $ref: '#/definitions/models.Ermcp3SpotGoodsPrice'
+            type: array
+        "500":
+          description: Internal Server Error
+          schema:
+            $ref: '#/definitions/app.Response'
+      security:
+      - ApiKeyAuth: []
+      summary: 查询现货市价(现货市价)
+      tags:
+      - 企业风险管理v3(app)
+  /Ermcp3/QuerySpotGoodsPriceLog:
+    get:
+      parameters:
+      - description: 用户ID
+        in: query
+        name: userid
+        required: true
+        type: integer
+      - description: 现货商品ID
+        in: query
+        name: deliverygoodsid
+        required: true
+        type: integer
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: OK
+          schema:
+            items:
+              $ref: '#/definitions/models.Ermcp3SpotGoodsPriceLog'
+            type: array
+        "500":
+          description: Internal Server Error
+          schema:
+            $ref: '#/definitions/app.Response'
+      security:
+      - ApiKeyAuth: []
+      summary: 查询现货市价详情(现货市价/详情)
+      tags:
+      - 企业风险管理v3(app)
   /Erms2/QueryArbitrageStrategy:
     get:
       parameters: