package com.db.demo.bean;
import java.io.Serializable;
import jakarta.persistence.Embeddable;
@SuppressWarnings("serial")
@Embeddable
public class CompositKeyEmbeddable implements Serializable{
private String student_id;
private String course;
public String getStudent_id() {
return student_id;
}
public void setStudent_id(String student_id) {
this.student_id = student_id;
}
public String getCourse() {
return course;
}
public void setCourse(String course) {
this.course = course;
}
}