package com.community.pocket.entity.vo.android; import com.community.pocket.entity.po.android.Token; public class ForumForm extends Token { //标题 private String title; //正文 private String content; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } }