소스 검색

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

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 7 년 전
부모
커밋
27fe78bdbf
3개의 변경된 파일9개의 추가작업 그리고 6개의 파일을 삭제
  1. 3 0
      ChangeLog.txt
  2. 5 6
      services/domain/check_domain.go
  3. 1 0
      services/domain/struct_demand.go

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-01-10 Version: 1.50.3
+1, Add fields for QueryBrokerDemand api.
+
 2019-01-09 Version: 1.50.2
 1, Add user role support.
 

+ 5 - 6
services/domain/check_domain.go

@@ -76,12 +76,11 @@ func (client *Client) CheckDomainWithCallback(request *CheckDomainRequest, callb
 // CheckDomainRequest is the request struct for api CheckDomain
 type CheckDomainRequest struct {
 	*requests.RpcRequest
-	FeeCurrency  string           `position:"Query" name:"FeeCurrency"`
-	FeePeriod    requests.Integer `position:"Query" name:"FeePeriod"`
-	DomainName   string           `position:"Query" name:"DomainName"`
-	UserClientIp string           `position:"Query" name:"UserClientIp"`
-	FeeCommand   string           `position:"Query" name:"FeeCommand"`
-	Lang         string           `position:"Query" name:"Lang"`
+	FeeCurrency string           `position:"Query" name:"FeeCurrency"`
+	FeePeriod   requests.Integer `position:"Query" name:"FeePeriod"`
+	DomainName  string           `position:"Query" name:"DomainName"`
+	FeeCommand  string           `position:"Query" name:"FeeCommand"`
+	Lang        string           `position:"Query" name:"Lang"`
 }
 
 // CheckDomainResponse is the response struct for api CheckDomain

+ 1 - 0
services/domain/struct_demand.go

@@ -30,4 +30,5 @@ type Demand struct {
 	ProduceType         int     `json:"ProduceType" xml:"ProduceType"`
 	BargainSellerPrice  float64 `json:"BargainSellerPrice" xml:"BargainSellerPrice"`
 	BargainSellerMobile string  `json:"BargainSellerMobile" xml:"BargainSellerMobile"`
+	ServicePayPrice     float64 `json:"ServicePayPrice" xml:"ServicePayPrice"`
 }