You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
509 B

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;
}
}