|
|
@@ -1,14 +1,13 @@
|
|
|
-// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
|
|
|
+// Package docs GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
|
|
|
// This file was generated by swaggo/swag
|
|
|
-
|
|
|
package docs
|
|
|
|
|
|
import (
|
|
|
"bytes"
|
|
|
"encoding/json"
|
|
|
"strings"
|
|
|
+ "text/template"
|
|
|
|
|
|
- "github.com/alecthomas/template"
|
|
|
"github.com/swaggo/swag"
|
|
|
)
|
|
|
|
|
|
@@ -16,7 +15,7 @@ var doc = `{
|
|
|
"schemes": {{ marshal .Schemes }},
|
|
|
"swagger": "2.0",
|
|
|
"info": {
|
|
|
- "description": "{{.Description}}",
|
|
|
+ "description": "{{escape .Description}}",
|
|
|
"title": "{{.Title}}",
|
|
|
"termsOfService": "http://www.muchinfo.cn",
|
|
|
"contact": {},
|
|
|
@@ -652,7 +651,7 @@ var doc = `{
|
|
|
},
|
|
|
{
|
|
|
"type": "integer",
|
|
|
- "description": "类型 - 1:App首页轮播 2:我的",
|
|
|
+ "description": "类型 - 1:App首页轮播 2:我的 3:首页(PC) 4:首页推广(移动-新会)",
|
|
|
"name": "imageType",
|
|
|
"in": "query"
|
|
|
}
|
|
|
@@ -14192,9 +14191,7 @@ var doc = `{
|
|
|
"code": {
|
|
|
"type": "integer"
|
|
|
},
|
|
|
- "data": {
|
|
|
- "type": "object"
|
|
|
- },
|
|
|
+ "data": {},
|
|
|
"msg": {
|
|
|
"type": "string"
|
|
|
},
|
|
|
@@ -17270,31 +17267,31 @@ var doc = `{
|
|
|
"type": "number"
|
|
|
},
|
|
|
"diffArbitrageQty": {
|
|
|
- "description": "套利变动量",
|
|
|
+ "description": "期现数量差 = 套保计划量 - 今日期货关联成交量",
|
|
|
"type": "number"
|
|
|
},
|
|
|
"diffExposoureQty": {
|
|
|
- "description": "变动量(套保敞口)",
|
|
|
+ "description": "期现数量差 = 套保计划量 - 今日期货关联成交量",
|
|
|
"type": "number"
|
|
|
},
|
|
|
"diffFutuQty": {
|
|
|
- "description": "变动量(期货总量) 平安:保值净持仓量今日变动",
|
|
|
+ "description": "期现数量差 = 套保计划量 - 今日期货关联成交量",
|
|
|
"type": "number"
|
|
|
},
|
|
|
"diffHedgeQty": {
|
|
|
- "description": "套保变动量",
|
|
|
+ "description": "期现数量差 = 套保计划量 - 今日期货关联成交量",
|
|
|
"type": "number"
|
|
|
},
|
|
|
"diffQty": {
|
|
|
- "description": "变动量(总敞口) 平安:净敞口今日变动",
|
|
|
+ "description": "期现数量差 = 套保计划量 - 今日期货关联成交量",
|
|
|
"type": "number"
|
|
|
},
|
|
|
"diffSpotHedgeQty": {
|
|
|
- "description": "变动量(现货应套保总量) 平安:应套保量今日变动",
|
|
|
+ "description": "期现数量差 = 套保计划量 - 今日期货关联成交量",
|
|
|
"type": "number"
|
|
|
},
|
|
|
"diffSpotQty": {
|
|
|
- "description": "变动量(现货总量) = 现货数量 - 期初现货数量 平安:采销定价净值今日变动",
|
|
|
+ "description": "期现数量差 = 套保计划量 - 今日期货关联成交量",
|
|
|
"type": "number"
|
|
|
},
|
|
|
"enumdicname": {
|
|
|
@@ -37396,6 +37393,10 @@ var doc = `{
|
|
|
"models.XHWrstandard": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
|
+ "bannerpicurl": {
|
|
|
+ "description": "banner图",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
"deliverygoodsid": {
|
|
|
"description": "品种ID",
|
|
|
"type": "integer"
|
|
|
@@ -40107,6 +40108,13 @@ func (s *s) ReadDoc() string {
|
|
|
a, _ := json.Marshal(v)
|
|
|
return string(a)
|
|
|
},
|
|
|
+ "escape": func(v interface{}) string {
|
|
|
+ // escape tabs
|
|
|
+ str := strings.Replace(v.(string), "\t", "\\t", -1)
|
|
|
+ // replace " with \", and if that results in \\", replace that with \\\"
|
|
|
+ str = strings.Replace(str, "\"", "\\\"", -1)
|
|
|
+ return strings.Replace(str, "\\\\\"", "\\\\\\\"", -1)
|
|
|
+ },
|
|
|
}).Parse(doc)
|
|
|
if err != nil {
|
|
|
return doc
|
|
|
@@ -40121,5 +40129,5 @@ func (s *s) ReadDoc() string {
|
|
|
}
|
|
|
|
|
|
func init() {
|
|
|
- swag.Register(swag.Name, &s{})
|
|
|
+ swag.Register("swagger", &s{})
|
|
|
}
|