1 | |
package org.kuali.student.enrollment.class1.lpr.model; |
2 | |
|
3 | |
import javax.persistence.Entity; |
4 | |
import javax.persistence.JoinColumn; |
5 | |
import javax.persistence.ManyToOne; |
6 | |
import javax.persistence.Table; |
7 | |
|
8 | |
import org.kuali.student.r2.common.entity.BaseAttributeEntity; |
9 | |
|
10 | 0 | @Entity |
11 | |
@Table(name = "KSLP_LPR_TRANS_ATTR") |
12 | 0 | public class LprTransactionAttributeEntity extends BaseAttributeEntity<LprTransactionItemEntity> { |
13 | |
@ManyToOne |
14 | |
@JoinColumn(name = "OWNER") |
15 | |
private LprTransactionItemEntity owner; |
16 | |
|
17 | |
@Override |
18 | |
public LprTransactionItemEntity getOwner() { |
19 | 0 | return this.owner; |
20 | |
} |
21 | |
|
22 | |
@Override |
23 | |
public void setOwner(LprTransactionItemEntity owner) { |
24 | 0 | this.owner = owner; |
25 | |
|
26 | 0 | } |
27 | |
|
28 | |
} |