Ver Fonte

QueryGZPreSell:添加返回值:
SELLMARGINALGORITHM int64 `json:"sellmarginalgorithm" xorm:"SELLMARGINALGORITHM"` // 卖方保证金方式
SELLMARGINVALUE int64 `json:"sellmarginvalue" xorm:"SELLMARGINVALUE"` // 卖方保证金值
PERFORMANCETEMPLATEID string `json:"performancetemplateid" xorm:"PERFORMANCETEMPLATEID"` // 履约模板ID
MINBUYQTY int32 `json:"minbuyqty" xorm:"MINBUYQTY"` // 最小采购单位
MINSUCCESSQTY int32 `json:"minsuccessqty" xorm:"MINSUCCESSQTY"` // 最低成团量

deng.yinping há 2 anos atrás
pai
commit
0e35cb3eae
4 ficheiros alterados com 8 adições e 8 exclusões
  1. 1 1
      docs/docs.go
  2. 1 1
      docs/swagger.json
  3. 1 1
      docs/swagger.yaml
  4. 5 5
      models/guangzuan.go

+ 1 - 1
docs/docs.go

@@ -35094,7 +35094,7 @@ const docTemplate = `{
                 },
                 "sellmarginvalue": {
                     "description": "卖方保证金值",
-                    "type": "integer"
+                    "type": "number"
                 },
                 "selluserid": {
                     "description": "发行方用户ID",

+ 1 - 1
docs/swagger.json

@@ -35085,7 +35085,7 @@
                 },
                 "sellmarginvalue": {
                     "description": "卖方保证金值",
-                    "type": "integer"
+                    "type": "number"
                 },
                 "selluserid": {
                     "description": "发行方用户ID",

+ 1 - 1
docs/swagger.yaml

@@ -10868,7 +10868,7 @@ definitions:
         type: integer
       sellmarginvalue:
         description: 卖方保证金值
-        type: integer
+        type: number
       selluserid:
         description: 发行方用户ID
         type: integer

+ 5 - 5
models/guangzuan.go

@@ -4223,11 +4223,11 @@ type GZPresell struct {
 	Customername string `json:"customername"  xorm:"'CUSTOMERNAME'" form:"customername"` // 企业名称(预售方\卖方)
 	TRADEQTY     int64  `json:"tradeqty" xorm:"TRADEQTY"`                                // 成交数量(已预售数量)
 
-	SELLMARGINALGORITHM   int64  `json:"sellmarginalgorithm" xorm:"SELLMARGINALGORITHM"`     // 卖方保证金方式
-	SELLMARGINVALUE       int64  `json:"sellmarginvalue" xorm:"SELLMARGINVALUE"`             // 卖方保证金值
-	PERFORMANCETEMPLATEID string `json:"performancetemplateid" xorm:"PERFORMANCETEMPLATEID"` // 履约模板ID
-	MINBUYQTY             int32  `json:"minbuyqty" xorm:"MINBUYQTY"`                         // 最小采购单位
-	MINSUCCESSQTY         int32  `json:"minsuccessqty" xorm:"MINSUCCESSQTY"`                 // 最低成团量
+	SELLMARGINALGORITHM   int64   `json:"sellmarginalgorithm" xorm:"SELLMARGINALGORITHM"`     // 卖方保证金方式
+	SELLMARGINVALUE       float64 `json:"sellmarginvalue" xorm:"SELLMARGINVALUE"`             // 卖方保证金值
+	PERFORMANCETEMPLATEID string  `json:"performancetemplateid" xorm:"PERFORMANCETEMPLATEID"` // 履约模板ID
+	MINBUYQTY             int32   `json:"minbuyqty" xorm:"MINBUYQTY"`                         // 最小采购单位
+	MINSUCCESSQTY         int32   `json:"minsuccessqty" xorm:"MINSUCCESSQTY"`                 // 最低成团量
 
 	PageEx `xorm:"extends"` // 页码信息
 }