Browse Source

修改“我的库存”出参类型

zhou.xiaoning 3 năm trước cách đây
mục cha
commit
0f35b3b4b0
4 tập tin đã thay đổi với 5 bổ sung5 xóa
  1. 1 1
      docs/docs.go
  2. 1 1
      docs/swagger.json
  3. 1 1
      docs/swagger.yaml
  4. 2 2
      models/guangzuan.go

+ 1 - 1
docs/docs.go

@@ -28361,7 +28361,7 @@ const docTemplate = `{
                 },
                 "ladingbillid": {
                     "description": "提单ID(208+Unix秒时间戳(10位)+xxxxxx)",
-                    "type": "integer"
+                    "type": "string"
                 },
                 "marketprice": {
                     "description": "市场价",

+ 1 - 1
docs/swagger.json

@@ -28352,7 +28352,7 @@
                 },
                 "ladingbillid": {
                     "description": "提单ID(208+Unix秒时间戳(10位)+xxxxxx)",
-                    "type": "integer"
+                    "type": "string"
                 },
                 "marketprice": {
                     "description": "市场价",

+ 1 - 1
docs/swagger.yaml

@@ -11285,7 +11285,7 @@ definitions:
         type: string
       ladingbillid:
         description: 提单ID(208+Unix秒时间戳(10位)+xxxxxx)
-        type: integer
+        type: string
       marketprice:
         description: 市场价
         type: string

+ 2 - 2
models/guangzuan.go

@@ -165,7 +165,7 @@ type MyWRPosition struct {
 	FREEZERQTY   int64   `json:"-" xorm:"FREEZERQTY"`
 	FTOTALQTY    float64 `json:"ftotalqty"`                        // 库存数量:WRPosition表:TOTALQTY /100 , 保留两位小数
 	FFREEZEQTY   float64 `json:"ffreezeqty"`                       // 冻结数量:WRPosition表:FREEZEQTY/100 , 保留两位小数
-	LADINGBILLID int64   `json:"ladingbillid" xorm:"LADINGBILLID"` // 提单ID(208+Unix秒时间戳(10位)+xxxxxx)
+	LADINGBILLID string  `json:"ladingbillid" xorm:"LADINGBILLID"` // 提单ID(208+Unix秒时间戳(10位)+xxxxxx)
 	SUBNUM       int32   `json:"subnum" xorm:"SUBNUM"`             // 提单子单号
 
 	PageEx `xorm:"extends"` // 页码信息
@@ -191,7 +191,7 @@ func (r *MyWRPosition) buildSql() string {
 	SELECT 
 		t.QTY,
 		t.FREEZERQTY,
-		t.LADINGBILLID,
+		to_char(t.LADINGBILLID) LADINGBILLID,
 		t.SUBNUM,
 		wr.* 
 	FROM WRHoldLB t