双重预防项目-国泰新华二开定制版
SZH
2022-08-20 f9f0687195e0fe349185437d22c495d74c8d4a20
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package com.ruoyi.project.tr.JpushMsg.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
 
/**
 * 极光推送消息对象 tr_jpush_msg
 * 
 * @author wm
 * @date 2020-09-10
 */
public class JpushMsg extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 极光推送消息表ID */
    private Integer jpushMsgId;
 
    /** 标题 */
    @Excel(name = "标题")
    private String title;
 
    /** 内容 */
    @Excel(name = "内容")
    private String content;
 
    /** 类型 */
    @Excel(name = "类型")
    private String methodType;
 
    /** 别名(用户user_id) */
    @Excel(name = "别名", readConverterExp = "用=户user_id")
    private String userId;
 
    /** 状态(0正常 1删除) */
    @Excel(name = "状态", readConverterExp = "0=正常,1=删除")
    private String status;
 
    public void setJpushMsgId(Integer jpushMsgId) 
    {
        this.jpushMsgId = jpushMsgId;
    }
 
    public Integer getJpushMsgId() 
    {
        return jpushMsgId;
    }
    public void setTitle(String title) 
    {
        this.title = title;
    }
 
    public String getTitle() 
    {
        return title;
    }
    public void setContent(String content) 
    {
        this.content = content;
    }
 
    public String getContent() 
    {
        return content;
    }
    public void setMethodType(String methodType) 
    {
        this.methodType = methodType;
    }
 
    public String getMethodType() 
    {
        return methodType;
    }
    public void setUserId(String userId) 
    {
        this.userId = userId;
    }
 
    public String getUserId() 
    {
        return userId;
    }
    public void setStatus(String status) 
    {
        this.status = status;
    }
 
    public String getStatus() 
    {
        return status;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("jpushMsgId", getJpushMsgId())
            .append("title", getTitle())
            .append("content", getContent())
            .append("methodType", getMethodType())
            .append("userId", getUserId())
            .append("status", getStatus())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("remark", getRemark())
            .toString();
    }
}