🎨 优化部分代码

This commit is contained in:
Binary Wang
2020-09-10 12:45:40 +08:00
parent 060576148b
commit 7bf811aa57
11 changed files with 39 additions and 15 deletions

View File

@ -18,10 +18,10 @@ public class ContentValue implements Serializable {
private String text;
@SerializedName("new_number")
private Double newNumber;
private String newNumber;
@SerializedName("new_money")
private Double newMoney;
private String newMoney;
private ContentValue.Date date;
@ -43,7 +43,7 @@ public class ContentValue implements Serializable {
private String type;
@SerializedName("s_timestamp")
private Double timestamp;
private String timestamp;
}
@Data