Commit 9810999e authored by 1516160's avatar 1516160

Upload New File

parent 909f7f2d
package com.altimetrik.playground.candidate.assessment.entity;
import javax.persistence.Embeddable;
@Embeddable
public class CustomerCartID {
private String email;
private int prodId;
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public int getProdId() {
return prodId;
}
public void setProdId(int prodId) {
this.prodId = prodId;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment