Selaa lähdekoodia

Fix: change upload mission body app bundle id to required column

liweihao 5 vuotta sitten
vanhempi
commit
4998169391

+ 2 - 2
src/main/java/com/example/kdan_data_center/datacenter/file/body/UploadMissionBody.kt

@@ -4,12 +4,12 @@ import com.google.gson.annotations.SerializedName
 
 
 data class UploadMissionBody(
-        @SerializedName("project_name") val projectName: String
+        @SerializedName("project_name") val projectName: String,
+        @SerializedName("app_bundle_id") val appBundleId: String
 ) {
     @SerializedName("object_type") var objectType: String? = null
     @SerializedName("bucket_name") var bucketName: String? = null
     @SerializedName("project_id") var projectId: String? = null
-    @SerializedName("app_bundle_id") var appBundleId: String? = null
     @SerializedName("full_path") var fullPath: String? = null
     @SerializedName("parent_id") var parentId: Int? = null
     @SerializedName("extimate_size") var extimateSize: Int? = null