Commit 726779aa authored by 杜欣's avatar 杜欣

submit message

parent 6532e234
...@@ -83,6 +83,7 @@ class RepliedContent { ...@@ -83,6 +83,7 @@ class RepliedContent {
int id; int id;
int type; int type;
int topicId; int topicId;
int pictorialId;
int contentType; int contentType;
String content; String content;
...@@ -93,6 +94,7 @@ class RepliedContent { ...@@ -93,6 +94,7 @@ class RepliedContent {
id = json['id']; id = json['id'];
type = json['type']; type = json['type'];
topicId = json['topic_id']; topicId = json['topic_id'];
pictorialId = json['pictorial_id'];
contentType = json['content_type']; contentType = json['content_type'];
content = json['content']; content = json['content'];
} }
...@@ -102,6 +104,7 @@ class RepliedContent { ...@@ -102,6 +104,7 @@ class RepliedContent {
data['id'] = this.id; data['id'] = this.id;
data['type'] = this.type; data['type'] = this.type;
data['topic_id'] = this.topicId; data['topic_id'] = this.topicId;
data['pictorial_id'] = this.pictorialId;
data['content_type'] = this.contentType; data['content_type'] = this.contentType;
data['content'] = this.content; data['content'] = this.content;
return data; return data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment