sdk-team 6 anni fa
parent
commit
5c522b6628

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-06-12 Version: 1.60.39
+1.Fix bug
+
 2019-06-12 Version: 1.60.38
 1, Add InvokeDataAPIService interface, support invoke service of data api to get sql query result.
 2, Add GetDataAPIServiceDetail interface, support get data api's detail information.

+ 2 - 2
services/imm/create_face_set.go

@@ -85,10 +85,10 @@ type CreateFaceSetResponse struct {
 	RequestId  string `json:"RequestId" xml:"RequestId"`
 	SetId      string `json:"SetId" xml:"SetId"`
 	Status     string `json:"Status" xml:"Status"`
-	Photos     int    `json:"Photos" xml:"Photos"`
+	Photos     int64  `json:"Photos" xml:"Photos"`
 	CreateTime string `json:"CreateTime" xml:"CreateTime"`
 	ModifyTime string `json:"ModifyTime" xml:"ModifyTime"`
-	Faces      int    `json:"Faces" xml:"Faces"`
+	Faces      int64  `json:"Faces" xml:"Faces"`
 }
 
 // CreateCreateFaceSetRequest creates a request to invoke CreateFaceSet API

+ 1 - 1
services/imm/create_tag_set.go

@@ -85,7 +85,7 @@ type CreateTagSetResponse struct {
 	RequestId  string `json:"RequestId" xml:"RequestId"`
 	SetId      string `json:"SetId" xml:"SetId"`
 	Status     string `json:"Status" xml:"Status"`
-	Photos     int    `json:"Photos" xml:"Photos"`
+	Photos     int64  `json:"Photos" xml:"Photos"`
 	CreateTime string `json:"CreateTime" xml:"CreateTime"`
 	ModifyTime string `json:"ModifyTime" xml:"ModifyTime"`
 }

+ 2 - 2
services/imm/get_doc_index.go

@@ -92,8 +92,8 @@ type GetDocIndexResponse struct {
 	Name              string `json:"Name" xml:"Name"`
 	ContentType       string `json:"ContentType" xml:"ContentType"`
 	LastModified      string `json:"LastModified" xml:"LastModified"`
-	Size              int    `json:"Size" xml:"Size"`
-	PageNum           int    `json:"PageNum" xml:"PageNum"`
+	Size              int64  `json:"Size" xml:"Size"`
+	PageNum           int64  `json:"PageNum" xml:"PageNum"`
 	CustomKey1        string `json:"CustomKey1" xml:"CustomKey1"`
 	CustomKey2        string `json:"CustomKey2" xml:"CustomKey2"`
 	CustomKey3        string `json:"CustomKey3" xml:"CustomKey3"`

+ 2 - 2
services/imm/get_set.go

@@ -86,8 +86,8 @@ type GetSetResponse struct {
 	RequestId   string `json:"RequestId" xml:"RequestId"`
 	SetId       string `json:"SetId" xml:"SetId"`
 	SetName     string `json:"SetName" xml:"SetName"`
-	CreateTime  int    `json:"CreateTime" xml:"CreateTime"`
-	ModifyTime  int    `json:"ModifyTime" xml:"ModifyTime"`
+	CreateTime  string `json:"CreateTime" xml:"CreateTime"`
+	ModifyTime  string `json:"ModifyTime" xml:"ModifyTime"`
 	FaceCount   int    `json:"FaceCount" xml:"FaceCount"`
 	ImageCount  int    `json:"ImageCount" xml:"ImageCount"`
 	VideoCount  int    `json:"VideoCount" xml:"VideoCount"`

+ 1 - 1
services/imm/get_tag_set.go

@@ -88,7 +88,7 @@ type GetTagSetResponse struct {
 	Status     string `json:"Status" xml:"Status"`
 	CreateTime string `json:"CreateTime" xml:"CreateTime"`
 	ModifyTime string `json:"ModifyTime" xml:"ModifyTime"`
-	Photos     int    `json:"Photos" xml:"Photos"`
+	Photos     int64  `json:"Photos" xml:"Photos"`
 }
 
 // CreateGetTagSetRequest creates a request to invoke GetTagSet API

+ 1 - 1
services/imm/struct_sets_item.go

@@ -17,7 +17,7 @@ package imm
 
 // SetsItem is a nested struct in imm response
 type SetsItem struct {
-	Photos      int    `json:"Photos" xml:"Photos"`
+	Photos      int64  `json:"Photos" xml:"Photos"`
 	SetId       string `json:"SetId" xml:"SetId"`
 	ModifyTime  string `json:"ModifyTime" xml:"ModifyTime"`
 	CreateTime  string `json:"CreateTime" xml:"CreateTime"`