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: 1.8.4
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;
  
  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;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy