1 | |
package org.kuali.student.enrollment.class1.lrc.model; |
2 | |
|
3 | |
import org.kuali.student.r2.common.entity.TypeEntity; |
4 | |
|
5 | |
import javax.persistence.Column; |
6 | |
import javax.persistence.Entity; |
7 | |
import javax.persistence.Table; |
8 | |
|
9 | |
@Entity |
10 | |
@Table(name = "KSEN_LRC_TYPE") |
11 | 0 | public class ResultScaleTypeEntity extends TypeEntity<ResultScaleAttributeEntity> { |
12 | |
|
13 | |
@Column(name = "REF_OBJECT_URI") |
14 | |
private String refObjectURI; |
15 | |
|
16 | |
public void setRefObjectURI(String refObjectURI) { |
17 | 0 | this.refObjectURI = refObjectURI; |
18 | 0 | } |
19 | |
|
20 | |
public String getRefObjectURI() { |
21 | 0 | return refObjectURI; |
22 | |
} |
23 | |
|
24 | |
} |