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.

34 lines
785 B

package com.community.pocket.entity.vo.android;
import com.community.pocket.entity.vo.NoticeVo;
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<NoticeVo> noticeList;
public List<NoticeVo> getNoticeList() {
return noticeList;
}
public void setNoticeList(List<NoticeVo> noticeList) {
this.noticeList = noticeList;
}
public ForumNoticeResponse(Result result, Msg message, Object... args) {
super(result, message, args);
}
public enum Msg implements CustomMessage {
ok,
fail,
delete_ok,
delete_fail
}
}