1 package org.kuali.student.lum.lu.bo;
2
3 import javax.persistence.Column;
4 import javax.persistence.JoinColumn;
5 import javax.persistence.ManyToOne;
6
7 import org.kuali.student.core.bo.KsMetaBusinessObjectBase;
8
9 public class LuCode extends KsMetaBusinessObjectBase {
10
11 private static final long serialVersionUID = -4157117953758049897L;
12
13 @Column(name = "DESCR")
14 private String description;
15
16 @Column(name = "VALUE")
17 private String value;
18
19 @Column(name = "TYPE")
20 private String type;
21
22 @ManyToOne
23 @JoinColumn(name="CLU_ID")
24 private String cluId;
25
26
27 public String getDescription() {
28 return description;
29 }
30
31 public void setDescription(String description) {
32 this.description = description;
33 }
34
35 public String getValue() {
36 return value;
37 }
38
39 public void setValue(String value) {
40 this.value = value;
41 }
42
43 public String getType() {
44 return type;
45 }
46
47 public void setType(String type) {
48 this.type = type;
49 }
50
51 public String getCluId() {
52 return cluId;
53 }
54
55 public void setCluId(String cluId) {
56 this.cluId = cluId;
57 }
58
59 }