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.

31 lines
680 B

package com.community.pocket.entity.vo.android;
import com.community.pocket.entity.vo.Response;
import com.community.pocket.entity.vo.Result;
import java.util.List;
/**
* 最新帖子响应
*/
public class ForumNewResponse extends Response<ForumNewResponse.Msg> {
private List<ForumVo> forumList;
public List<ForumVo> getForumList() {
return forumList;
}
public void setForumList(List<ForumVo> forumList) {
this.forumList = forumList;
}
public ForumNewResponse(Result result, Msg message, Object... args) {
super(result, message, args);
}
public enum Msg implements CustomMessage{
ok,
fail
}
}