NewsNoticeVO.java 551 B

123456789101112131415161718192021222324252627282930
  1. package com.hssx.cloudmodel.entity.vo;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.hssx.cloudmodel.entity.NewsNotice;
  4. import lombok.Data;
  5. /**
  6. * Author: 吴涛涛 cuiyi@itany.com
  7. * Date : 2019 - 08 - 10 9:12
  8. * Description:<描述>
  9. * Version: 1.0
  10. */
  11. @Data
  12. public class NewsNoticeVO extends NewsNotice {
  13. /**
  14. * 通知者id
  15. */
  16. private Integer userId;
  17. /**
  18. * 是否已读 0-未读,1-已读
  19. */
  20. private Integer isRead;
  21. /**
  22. * 消息通知表id
  23. */
  24. private Integer newsId;
  25. }