瀏覽代碼

DOMAIN SDK Auto Released By tieqin.lxy,Version:1.40.0

Signed-off-by: yixiong.jxy <yixiong.jxy@alibaba-inc.com>
yixiong.jxy 7 年之前
父節點
當前提交
94c5f1875a
共有 2 個文件被更改,包括 16 次插入11 次删除
  1. 3 0
      ChangeLog.txt
  2. 13 11
      services/domain/struct_demand.go

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2018-11-19 Version: 1.40.0
+1, Add field BargainSellerPrice and BargainSellerMobile
+
 2018-11-19 Version: 1.39.3
 1, Fixed some problems.
 

+ 13 - 11
services/domain/struct_demand.go

@@ -17,15 +17,17 @@ package domain
 
 // Demand is a nested struct in domain response
 type Demand struct {
-	BizId        string  `json:"BizId" xml:"BizId"`
-	Status       string  `json:"Status" xml:"Status"`
-	DemandDomain string  `json:"DemandDomain" xml:"DemandDomain"`
-	DemandPrice  float64 `json:"DemandPrice" xml:"DemandPrice"`
-	Mobile       string  `json:"Mobile" xml:"Mobile"`
-	Description  string  `json:"Description" xml:"Description"`
-	PublishTime  int     `json:"PublishTime" xml:"PublishTime"`
-	PayDomain    string  `json:"PayDomain" xml:"PayDomain"`
-	PayPrice     float64 `json:"PayPrice" xml:"PayPrice"`
-	PayTime      int     `json:"PayTime" xml:"PayTime"`
-	ProduceType  int     `json:"ProduceType" xml:"ProduceType"`
+	BizId               string  `json:"BizId" xml:"BizId"`
+	Status              string  `json:"Status" xml:"Status"`
+	DemandDomain        string  `json:"DemandDomain" xml:"DemandDomain"`
+	DemandPrice         float64 `json:"DemandPrice" xml:"DemandPrice"`
+	Mobile              string  `json:"Mobile" xml:"Mobile"`
+	Description         string  `json:"Description" xml:"Description"`
+	PublishTime         int     `json:"PublishTime" xml:"PublishTime"`
+	PayDomain           string  `json:"PayDomain" xml:"PayDomain"`
+	PayPrice            float64 `json:"PayPrice" xml:"PayPrice"`
+	PayTime             int     `json:"PayTime" xml:"PayTime"`
+	ProduceType         int     `json:"ProduceType" xml:"ProduceType"`
+	BargainSellerPrice  float64 `json:"BargainSellerPrice" xml:"BargainSellerPrice"`
+	BargainSellerMobile string  `json:"BargainSellerMobile" xml:"BargainSellerMobile"`
 }