zhou.xiaoning há 2 anos atrás
pai
commit
2737b5a5b7
5 ficheiros alterados com 5 adições e 16 exclusões
  1. 4 4
      controllers/guangzuan/tradeService.go
  2. 0 4
      docs/docs.go
  3. 0 4
      docs/swagger.json
  4. 0 3
      docs/swagger.yaml
  5. 1 1
      models/sbyj.go

+ 4 - 4
controllers/guangzuan/tradeService.go

@@ -18,8 +18,8 @@ import (
 // @Security Group
 // @Param    userid   query    int    true  "用户ID"
 // @Param    executestatus query    int false "执行状态 - 1:未生效 2:进行中 3:已结束"
-// @Param    page     query    int    false "页码"
-// @Param    pagesize query    int    false "每页条数"
+// @Param    page          query    int false "页码"
+// @Param    pagesize      query    int false "每页条数"
 // @Success  200           {array}  models.GzcjjcorderM
 // @Failure  500     {object} app.Response
 // @Router   /Guangzuan/QueryGZCJJCOrder [get]
@@ -39,8 +39,8 @@ func QueryGZCJJCOrder(c *gin.Context) {
 // @Security Group
 // @Param    userid        query    int true  "用户ID"
 // @Param    orderid  query    string false "单据ID"
-// @Param    page          query    int false "页码"
-// @Param    pagesize      query    int false "每页条数"
+// @Param    page     query    int    false "页码"
+// @Param    pagesize query    int    false "每页条数"
 // @Success  200      {array}  models.GzcjjcorderdetailM
 // @Failure  500           {object} app.Response
 // @Router   /Guangzuan/QueryGZCJJCOrderDetail [get]

+ 0 - 4
docs/docs.go

@@ -44345,10 +44345,6 @@ const docTemplate = `{
                 "userid"
             ],
             "properties": {
-                "--": {
-                    "description": "状态入参",
-                    "type": "string"
-                },
                 "accountid": {
                     "description": "账户ID",
                     "type": "integer"

+ 0 - 4
docs/swagger.json

@@ -44336,10 +44336,6 @@
                 "userid"
             ],
             "properties": {
-                "--": {
-                    "description": "状态入参",
-                    "type": "string"
-                },
                 "accountid": {
                     "description": "账户ID",
                     "type": "integer"

+ 0 - 3
docs/swagger.yaml

@@ -16181,9 +16181,6 @@ definitions:
     type: object
   models.MyTradegoodsdeliveryoffline:
     properties:
-      --:
-        description: 状态入参
-        type: string
       accountid:
         description: 账户ID
         type: integer

+ 1 - 1
models/sbyj.go

@@ -263,7 +263,7 @@ type MyTradegoodsdeliveryoffline struct {
 	DECIMALPLACE int32   `json:"decimalplace" xorm:"DECIMALPLACE"` // 报价小数位
 	GOODUNITID   int32   `json:"goodunitid" xorm:"GOODUNITID"`     // 报价单位ID
 
-	Status string `json:"--" form:"status"` // 状态入参
+	Status string `json:"-" form:"status"` // 状态入参
 
 	PageEx `xorm:"extends"` // 页码信息
 }