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.

62 lines
1.1 KiB

package com.community.pocket.entity.vo;
import com.community.pocket.entity.po.Forum;
/**
* 帖子查询条件
*/
public class ForumQuery {
//审核状态
private Forum.ForumStatus status;
private Long currentPage;
//用户名
private String username;
//帖子id
private String forumId;
//帖子类型
private Object[] forumType;
public Object[] getForumType() {
return forumType;
}
public void setForumType(Object[] forumType) {
this.forumType = forumType;
}
public Forum.ForumStatus getStatus() {
return status;
}
public void setStatus(Forum.ForumStatus status) {
this.status = status;
}
public Long getCurrentPage() {
return currentPage;
}
public void setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getForumId() {
return forumId;
}
public void setForumId(String forumId) {
this.forumId = forumId;
}
}