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

submit message

parent 6532e234
......@@ -83,6 +83,7 @@ class RepliedContent {
int id;
int type;
int topicId;
int pictorialId;
int contentType;
String content;
......@@ -93,6 +94,7 @@ class RepliedContent {
id = json['id'];
type = json['type'];
topicId = json['topic_id'];
pictorialId = json['pictorial_id'];
contentType = json['content_type'];
content = json['content'];
}
......@@ -102,6 +104,7 @@ class RepliedContent {
data['id'] = this.id;
data['type'] = this.type;
data['topic_id'] = this.topicId;
data['pictorial_id'] = this.pictorialId;
data['content_type'] = this.contentType;
data['content'] = this.content;
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