package com.pollex.pam.domain;
|
|
import java.io.Serializable;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.GenerationType;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name = "appointment_memo")
|
public class AppointmentMemo extends AbstractAuditingEntity implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
private Long id;
|
|
@Column(name = "content")
|
private String content;
|
|
@Column(name = "appointment_id")
|
private Long appointmentId;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public Long getAppointmentId() {
|
return appointmentId;
|
}
|
|
public void setAppointmentId(Long appointmentId) {
|
this.appointmentId = appointmentId;
|
}
|
|
|
|
}
|