zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package com.shlanbao.tzsc.base.mapping;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
 
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
 
/**
 * MsgInfo entity. @author MyEclipse Persistence Tools
 */
 
public class MsgInfo extends BaseEntity implements java.io.Serializable {
 
 
    // Fields    
 
     private String id;
     
     private MsgInfo msgInfo;
     
     private SysUser sysUserByApproval;
     private SysUser sysUserByInitiator;
     private SysUser sysUserByIssuer;
     
     
     private Date time;
     private String content;
     private String eid;
     private Long flag;
     private Long del;
     private String title;
     private String noticeObject;
     private String approveContent;
     private Date approveTime;
     private Set msgInfos = new HashSet(0);
 
     private Long sendFlag ;//通知是否推送标记 0|null: 未推送   1:已推送
     private Long sendType ;//通知推送类型    0:PMS和WCT    1:PMS  2:WCT
 
    public Long getSendFlag() {
        return sendFlag;
    }
 
    public void setSendFlag(Long sendFlag) {
        this.sendFlag = sendFlag;
    }
 
    public Long getSendType() {
        return sendType;
    }
 
    public void setSendType(Long sendType) {
        this.sendType = sendType;
    }
 
 
// Constructors
 
    /** default constructor */
    public MsgInfo() {
    }
 
    
    /** full constructor */
    public MsgInfo(SysUser sysUserByApproval, SysUser sysUserByInitiator, MsgInfo msgInfo, SysUser sysUserByIssuer, Date time, String content, String eid, Long flag, Long del, String title, String noticeObject, String approveContent, Date approveTime, Set msgInfos) {
        this.sysUserByApproval = sysUserByApproval;
        this.sysUserByInitiator = sysUserByInitiator;
        this.msgInfo = msgInfo;
        this.sysUserByIssuer = sysUserByIssuer;
        this.time = time;
        this.content = content;
        this.eid = eid;
        this.flag = flag;
        this.del = del;
        this.title = title;
        this.noticeObject = noticeObject;
        this.approveContent = approveContent;
        this.approveTime = approveTime;
        this.msgInfos = msgInfos;
    }
 
   
    // Property accessors
 
    public String getId() {
        return this.id;
    }
    
    public void setId(String id) {
        this.id = id;
    }
 
    public SysUser getSysUserByApproval() {
        return this.sysUserByApproval;
    }
    
    public void setSysUserByApproval(SysUser sysUserByApproval) {
        this.sysUserByApproval = sysUserByApproval;
    }
 
    public SysUser getSysUserByInitiator() {
        return this.sysUserByInitiator;
    }
    
    public void setSysUserByInitiator(SysUser sysUserByInitiator) {
        this.sysUserByInitiator = sysUserByInitiator;
    }
 
    public MsgInfo getMsgInfo() {
        return this.msgInfo;
    }
    
    public void setMsgInfo(MsgInfo msgInfo) {
        this.msgInfo = msgInfo;
    }
 
    public SysUser getSysUserByIssuer() {
        return this.sysUserByIssuer;
    }
    
    public void setSysUserByIssuer(SysUser sysUserByIssuer) {
        this.sysUserByIssuer = sysUserByIssuer;
    }
 
    public Date getTime() {
        return this.time;
    }
    
    public void setTime(Date time) {
        this.time = time;
    }
 
    public String getContent() {
        return this.content;
    }
    
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getEid() {
        return this.eid;
    }
    
    public void setEid(String eid) {
        this.eid = eid;
    }
 
    public Long getFlag() {
        return this.flag;
    }
    
    public void setFlag(Long flag) {
        this.flag = flag;
    }
 
    public Long getDel() {
        return this.del;
    }
    
    public void setDel(Long del) {
        this.del = del;
    }
 
    public String getTitle() {
        return this.title;
    }
    
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getNoticeObject() {
        return this.noticeObject;
    }
    
    public void setNoticeObject(String noticeObject) {
        this.noticeObject = noticeObject;
    }
 
    public String getApproveContent() {
        return this.approveContent;
    }
    
    public void setApproveContent(String approveContent) {
        this.approveContent = approveContent;
    }
 
    public Date getApproveTime() {
        return this.approveTime;
    }
    
    public void setApproveTime(Date approveTime) {
        this.approveTime = approveTime;
    }
 
    public Set getMsgInfos() {
        return this.msgInfos;
    }
    
    public void setMsgInfos(Set msgInfos) {
        this.msgInfos = msgInfos;
    }
 
}