| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- package com.java110.dto.notice;
- import com.java110.dto.PageDto;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * @ClassName FloorDto
- * @Description 通知数据层封装
- * @Author wuxw
- * @Date 2019/4/24 8:52
- * @Version 1.0
- * add by wuxw 2019/4/24
- **/
- public class NoticeDto extends PageDto implements Serializable {
- private String noticeTypeCd;
- private String context;
- private String startTime;
- private String endTime;
- private String communityId;
- private String title;
- private String userId;
- private String noticeId;
- private Date createTime;
- private String noticeTypeCdName;
- private String statusCd = "0";
- public String getNoticeTypeCd() {
- return noticeTypeCd;
- }
- public void setNoticeTypeCd(String noticeTypeCd) {
- this.noticeTypeCd = noticeTypeCd;
- }
- public String getContext() {
- return context;
- }
- public void setContext(String context) {
- this.context = context;
- }
- public String getStartTime() {
- return startTime;
- }
- public void setStartTime(String startTime) {
- this.startTime = startTime;
- }
- public String getCommunityId() {
- return communityId;
- }
- public void setCommunityId(String communityId) {
- this.communityId = communityId;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- public String getNoticeId() {
- return noticeId;
- }
- public void setNoticeId(String noticeId) {
- this.noticeId = noticeId;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getStatusCd() {
- return statusCd;
- }
- public void setStatusCd(String statusCd) {
- this.statusCd = statusCd;
- }
- public String getEndTime() {
- return endTime;
- }
- public void setEndTime(String endTime) {
- this.endTime = endTime;
- }
- public String getNoticeTypeCdName() {
- return noticeTypeCdName;
- }
- public void setNoticeTypeCdName(String noticeTypeCdName) {
- this.noticeTypeCdName = noticeTypeCdName;
- }
- }
|