main
hrxiang 3 years ago
parent aa05465509
commit 744268371f
  1. 4
      lib/src/models/message.dart

@ -74,7 +74,7 @@ class Message {
createTime = json['createTime']; createTime = json['createTime'];
sendTime = json['sendTime']; sendTime = json['sendTime'];
sendID = json['sendID']; sendID = json['sendID'];
recvID = json['RecvID']; recvID = json['recvID'];
msgFrom = json['msgFrom']; msgFrom = json['msgFrom'];
contentType = json['contentType']; contentType = json['contentType'];
platformID = json['platformID']; platformID = json['platformID'];
@ -125,7 +125,7 @@ class Message {
data['createTime'] = this.createTime; data['createTime'] = this.createTime;
data['sendTime'] = this.sendTime; data['sendTime'] = this.sendTime;
data['sendID'] = this.sendID; data['sendID'] = this.sendID;
data['RecvID'] = this.recvID; data['recvID'] = this.recvID;
data['msgFrom'] = this.msgFrom; data['msgFrom'] = this.msgFrom;
data['contentType'] = this.contentType; data['contentType'] = this.contentType;
data['platformID'] = this.platformID; data['platformID'] = this.platformID;

Loading…
Cancel
Save