Blame view

java110-bean/src/main/java/com/java110/po/property/MessageNotifyPo.java 1.34 KB
88e030b7   王彪总   init project
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
  package com.java110.po.property;
  
  import java.io.Serializable;
  import java.util.Date;
  
  /**
   * 消息通知PO
   * : message_notify
   */
  public class MessageNotifyPo implements Serializable {
  
      private String id;
      private String userId;
      private String title;
      private String content;
      private String msgType;
      private String relateId;
      private int isRead;          // 0=未读 1=已读
      private Date createTime;
  
      public String getId() { return id; }
      public void setId(String id) { this.id = id; }
      public String getUserId() { return userId; }
      public void setUserId(String userId) { this.userId = userId; }
      public String getTitle() { return title; }
      public void setTitle(String title) { this.title = title; }
      public String getContent() { return content; }
      public void setContent(String content) { this.content = content; }
      public String getMsgType() { return msgType; }
      public void setMsgType(String msgType) { this.msgType = msgType; }
      public String getRelateId() { return relateId; }
      public void setRelateId(String relateId) { this.relateId = relateId; }
      public int getIsRead() { return isRead; }
      public void setIsRead(int isRead) { this.isRead = isRead; }
      public Date getCreateTime() { return createTime; }
      public void setCreateTime(Date createTime) { this.createTime = createTime; }
  }