jinlin
2023-11-03 35435e8b1995e6775c82b86652381e07e3faff54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
 * Copyright (c) 2019 人人开源 All rights reserved.
 *
 * https://www.renren.io
 *
 * 版权所有,侵权必究!
 */
package com.zt.modules.message.model;
 
import java.io.Serializable;
import java.util.Date;
 
import lombok.Data;
import lombok.experimental.Accessors;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.zt.common.entity.PlatformEntity;
 
import io.swagger.annotations.ApiModelProperty;
 
/**
 * 我的通知
 *
 * @author Mark sunlightcs@gmail.com
 */
@Data
@Accessors(chain = true)
@TableName("SYS_NOTICE_USER")
public class SysNoticeUser extends PlatformEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    private Long noticeId;// 通知ID
 
    @ApiModelProperty(value = "接收者")
    private Long receiverId;// 接收者ID
 
    @ApiModelProperty(value = "阅读状态  0:未读  1:已读")
    private Integer status;// 阅读状态 0:未读 1:已读
 
    @ApiModelProperty(value = "阅读时间")
    private Date readDate;// 阅读时间
 
    @ApiModelProperty(value = "接收者")
    @TableField(exist = false)
    private String receiverName;
}