1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.lu.entity; |
17 |
|
|
18 |
|
import javax.persistence.Column; |
19 |
|
import javax.persistence.Entity; |
20 |
|
import javax.persistence.JoinColumn; |
21 |
|
import javax.persistence.ManyToOne; |
22 |
|
import javax.persistence.Table; |
23 |
|
|
24 |
|
import org.kuali.student.common.entity.BaseEntity; |
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
@author |
30 |
|
|
31 |
|
|
32 |
|
@Entity |
33 |
|
@Table(name = "KSLU_CLU_JN_SUBJ_ORG") |
34 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
35 |
|
public class CluAcademicSubjectOrg extends BaseEntity { |
36 |
|
|
37 |
|
@Column(name = "ORG_ID") |
38 |
|
private String orgId; |
39 |
|
|
40 |
|
@ManyToOne |
41 |
|
@JoinColumn(name = "CLU_ID") |
42 |
|
private Clu clu; |
43 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
0
|
public String getOrgId() {... |
45 |
0
|
return orgId; |
46 |
|
} |
47 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
48 |
0
|
public void setOrgId(String orgId) {... |
49 |
0
|
this.orgId = orgId; |
50 |
|
} |
51 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
52 |
0
|
public Clu getClu() {... |
53 |
0
|
return clu; |
54 |
|
} |
55 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
56 |
0
|
public void setClu(Clu clu) {... |
57 |
0
|
this.clu = clu; |
58 |
|
} |
59 |
|
|
60 |
|
} |