All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quhaodian.notice.rest.domain.simple.NotificationSimple Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.quhaodian.notice.rest.domain.simple;

import java.io.Serializable;

public class NotificationSimple implements Serializable {
  
  private Long id;
  
  private String title;
  
  private String note;
  
  private Long date;
  
  /**
   * 阅读状态
   */
  private Integer state;
  
  public Long getId() {
    return id;
  }
  
  public void setId(Long id) {
    this.id = id;
  }
  
  public String getTitle() {
    return title;
  }
  
  public void setTitle(String title) {
    this.title = title;
  }
  
  public String getNote() {
    return note;
  }
  
  public void setNote(String note) {
    this.note = note;
  }
  
  public Long getDate() {
    return date;
  }
  
  public void setDate(Long date) {
    this.date = date;
  }
  
  public Integer getState() {
    return state;
  }
  
  public void setState(Integer state) {
    this.state = state;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy