完善pomelo客户端

This commit is contained in:
leo
2018-08-22 10:57:12 +08:00
parent cd8aa7d6c5
commit 821a8f550d
47 changed files with 4468 additions and 322 deletions

View File

@@ -0,0 +1,23 @@
class ChatInfoModel {
constructor() {
this.chatInfo = {};
}
setName(name) {
this.chatInfo.name = name;
}
getName() {
return this.chatInfo.name;
}
setRoomId(rid) {
this.chatInfo.rid = rid;
}
getRoomId() {
return this.chatInfo.rid;
}
}
module.exports = new ChatInfoModel();