123456789101112131415161718192021222324252627282930 |
- package com.hssx.cloudmodel.entity.vo;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.hssx.cloudmodel.entity.NewsNotice;
- import lombok.Data;
- /**
- * Author: 吴涛涛 cuiyi@itany.com
- * Date : 2019 - 08 - 10 9:12
- * Description:<描述>
- * Version: 1.0
- */
- @Data
- public class NewsNoticeVO extends NewsNotice {
- /**
- * 通知者id
- */
- private Integer userId;
- /**
- * 是否已读 0-未读,1-已读
- */
- private Integer isRead;
- /**
- * 消息通知表id
- */
- private Integer newsId;
- }
|