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.

32 lines
737 B

package com.community.pocket.entity.vo.android;
import com.community.pocket.entity.po.Notice;
import com.community.pocket.entity.vo.Response;
import com.community.pocket.entity.vo.Result;
import java.util.List;
/**
* 公告响应体
*/
public class ForumNoticeResponse extends Response<ForumNoticeResponse.Msg> {
private List<Notice> noticeList;
public List<Notice> getNoticeList() {
return noticeList;
}
public void setNoticeList(List<Notice> noticeList) {
this.noticeList = noticeList;
}
public ForumNoticeResponse(Result result, Msg message, Object... args) {
super(result, message, args);
}
public enum Msg implements CustomMessage {
ok,
fail
}
}