mirror of
https://github.com/czp3009/bilibili-api.git
synced 2024-12-21 20:30:28 +08:00
修正数据类型
This commit is contained in:
parent
0e0a710b15
commit
0fc394bc23
@ -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'
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user