1 | |
package org.kuali.student.enrollment.class1.lui.model; |
2 | |
|
3 | |
import javax.persistence.Column; |
4 | |
import javax.persistence.Entity; |
5 | |
import javax.persistence.Id; |
6 | |
import javax.persistence.JoinColumn; |
7 | |
import javax.persistence.ManyToOne; |
8 | |
import javax.persistence.Table; |
9 | |
|
10 | |
@Entity |
11 | |
@Table(name = "KSEN_LUI_UNITS_CONT_OWNER") |
12 | 0 | public class LuiUnitContentOwnerEntity { |
13 | |
|
14 | |
@Id |
15 | |
@Column(name = "ID") |
16 | |
private String id; |
17 | |
|
18 | |
@ManyToOne |
19 | |
@JoinColumn(name = "LUI_ID") |
20 | |
private LuiEntity lui; |
21 | |
|
22 | |
@Column(name = "ORG_ID", nullable = false) |
23 | |
private String orgId; |
24 | |
|
25 | |
public String getId() { |
26 | 0 | return id; |
27 | |
} |
28 | |
|
29 | |
public void setId(String id) { |
30 | 0 | this.id = id; |
31 | 0 | } |
32 | |
|
33 | |
public LuiEntity getLui() { |
34 | 0 | return lui; |
35 | |
} |
36 | |
|
37 | |
public void setLui(LuiEntity lui) { |
38 | 0 | this.lui = lui; |
39 | 0 | } |
40 | |
|
41 | |
public String getOrgId() { |
42 | 0 | return orgId; |
43 | |
} |
44 | |
|
45 | |
public void setOrgId(String orgId) { |
46 | 0 | this.orgId = orgId; |
47 | 0 | } |
48 | |
} |