修正数据类型

This commit is contained in:
czp3009 2018-06-13 17:22:41 +08:00
parent 0fc394bc23
commit 09767839d2

View File

@ -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;
}
}