1 |
|
package org.kuali.student.lum.lu.bo; |
2 |
|
|
3 |
|
import javax.persistence.Column; |
4 |
|
|
5 |
|
import org.kuali.student.core.bo.KsBusinessObjectBase; |
6 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
7 |
|
public class CluInstructor extends KsBusinessObjectBase { |
8 |
|
|
9 |
|
private static final long serialVersionUID = -1329580309570854394L; |
10 |
|
|
11 |
|
@Column(name = "ORG_ID") |
12 |
|
private String orgId; |
13 |
|
|
14 |
|
@Column(name = "PERS_ID") |
15 |
|
private String personId; |
16 |
|
|
17 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
18 |
0
|
public String getOrgId() {... |
19 |
0
|
return orgId; |
20 |
|
} |
21 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
22 |
0
|
public void setOrgId(String orgId) {... |
23 |
0
|
this.orgId = orgId; |
24 |
|
} |
25 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
26 |
0
|
public String getPersonId() {... |
27 |
0
|
return personId; |
28 |
|
} |
29 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
30 |
0
|
public void setPersonId(String personId) {... |
31 |
0
|
this.personId = personId; |
32 |
|
} |
33 |
|
|
34 |
|
} |