1 | |
package org.kuali.student.enrollment.class1.lpr.model; |
2 | |
|
3 | |
import javax.persistence.Column; |
4 | |
import javax.persistence.Embeddable; |
5 | |
import javax.persistence.Entity; |
6 | |
import javax.persistence.JoinColumn; |
7 | |
import javax.persistence.ManyToOne; |
8 | |
import javax.persistence.Table; |
9 | |
|
10 | |
import org.hibernate.annotations.Cascade; |
11 | |
import org.kuali.student.r2.common.entity.MetaEntity; |
12 | |
|
13 | |
@Entity |
14 | |
@Table(name="KSEN_LPR_TRANS_ITEM_RQST_OPT") |
15 | 0 | public class LprRequestOptionEntity extends MetaEntity { |
16 | |
|
17 | |
@Column(name = "OPTION_KEY") |
18 | |
private String optionKey; |
19 | |
|
20 | |
@Column(name = "OPTION_VALUE") |
21 | |
private String optionValue; |
22 | |
|
23 | |
@ManyToOne |
24 | |
@JoinColumn (name="LPR_TRANS_ITEM_ID") |
25 | |
private LprTransactionItemEntity lprTransactionItem; |
26 | |
|
27 | |
public String getOptionKey() { |
28 | 0 | return optionKey; |
29 | |
} |
30 | |
|
31 | |
public void setOptionKey(String optionKey) { |
32 | 0 | this.optionKey = optionKey; |
33 | 0 | } |
34 | |
|
35 | |
public String getOptionValue() { |
36 | 0 | return optionValue; |
37 | |
} |
38 | |
|
39 | |
public void setOptionValue(String optionValue) { |
40 | 0 | this.optionValue = optionValue; |
41 | 0 | } |
42 | |
|
43 | |
public LprTransactionItemEntity getLprTransactionItem() { |
44 | 0 | return lprTransactionItem; |
45 | |
} |
46 | |
|
47 | |
public void setLprTransactionItem(LprTransactionItemEntity lprTransactionItem) { |
48 | 0 | this.lprTransactionItem = lprTransactionItem; |
49 | 0 | } |
50 | |
|
51 | |
|
52 | |
} |