修正数据类型

This commit is contained in:
czp3009 2018-06-13 14:58:31 +08:00
parent 0e0a710b15
commit 0fc394bc23
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
group = 'com.hiczp'
version = '0.0.16'
version = '0.0.17'
description = 'Bilibili android client API library written in Java'
apply plugin: 'idea'

View File

@ -178,7 +178,7 @@ public class LiveRoomInfoEntity extends ResponseEntity {
@SerializedName("special_gift_gif")
private String specialGiftGif;
@SerializedName("show_room_id")
private int showRoomId;
private long showRoomId;
@SerializedName("recommend")
private List<Recommend> recommend;
@SerializedName("toplist")
@ -546,11 +546,11 @@ public class LiveRoomInfoEntity extends ResponseEntity {
this.specialGiftGif = specialGiftGif;
}
public int getShowRoomId() {
public long getShowRoomId() {
return showRoomId;
}
public void setShowRoomId(int showRoomId) {
public void setShowRoomId(long showRoomId) {
this.showRoomId = showRoomId;
}