-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc5a08e
commit 53071ce
Showing
2 changed files
with
37 additions
and
37 deletions.
There are no files selected for viewing
12 changes: 6 additions & 6 deletions
12
app/src/androidTest/java/com/hjq/gson/factory/test/DataClassBean.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package com.hjq.gson.factory.test | ||
|
||
data class DataClassBean( | ||
var name: String = "轮子哥", | ||
var alias: String, | ||
var address: String? = "", | ||
var company: String?, | ||
var age: Int = 20, | ||
var weight: Int, | ||
var stature: Int? = 180, | ||
var alias: String, | ||
var child: DataClassChildBean, | ||
var company: String?, | ||
var interest: List<String>, | ||
var child: DataClassChildBean | ||
var name: String = "轮子哥", | ||
var stature: Int? = 180, | ||
var weight: Int | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters