mirror of
https://github.com/czp3009/bilibili-api.git
synced 2024-12-21 20:30:28 +08:00
修正数据类型
This commit is contained in:
parent
0fc394bc23
commit
09767839d2
@ -14,7 +14,7 @@ public class CutOffEntity implements DataEntity {
|
||||
@SerializedName("msg")
|
||||
private String msg;
|
||||
@SerializedName("roomid")
|
||||
private int roomId;
|
||||
private long roomId;
|
||||
|
||||
@Override
|
||||
public String getCmd() {
|
||||
@ -33,11 +33,11 @@ public class CutOffEntity implements DataEntity {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public int getRoomId() {
|
||||
public long getRoomId() {
|
||||
return roomId;
|
||||
}
|
||||
|
||||
public void setRoomId(int roomId) {
|
||||
public void setRoomId(long roomId) {
|
||||
this.roomId = roomId;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user