guoshilong
2024-04-16 62428f7b629da3e4eb40937466e38f2cd9ef7ed9
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
48
49
50
51
52
53
54
55
package cn.gistack.sm.message.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
 
import lombok.Data;
import org.springblade.core.mp.base.BaseEntity;
 
import java.io.Serializable;
 
/**
 * 消息记录实体
 * @author zhongrj
 * @date 2023-06-16
 */
@Data
@TableName("sm_message_record")
public class MessageRecord extends BaseEntity implements Serializable {
 
    /**
     * 主题
     */
    private String theme;
 
    /**
     * 消息发送人
     */
    private String sender;
 
    /**
     * 接收人
     */
    private String recipient;
 
    /**
     * 消息内容
     */
    private String content;
 
    /**
     * 状态 0未读  1已读
     */
    private Integer status;
 
    /**
     * 来源
     */
    private String source;
 
    private String resGuid;
 
    private String feedback;
 
    //是否异常 1是 2 否
    private String alertStatus;
}