| 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 | 0 | 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 | 0 | return description; |
| 29 | |
} |
| 30 | |
|
| 31 | |
public void setDescription(String description) { |
| 32 | 0 | this.description = description; |
| 33 | 0 | } |
| 34 | |
|
| 35 | |
public String getValue() { |
| 36 | 0 | return value; |
| 37 | |
} |
| 38 | |
|
| 39 | |
public void setValue(String value) { |
| 40 | 0 | this.value = value; |
| 41 | 0 | } |
| 42 | |
|
| 43 | |
public String getType() { |
| 44 | 0 | return type; |
| 45 | |
} |
| 46 | |
|
| 47 | |
public void setType(String type) { |
| 48 | 0 | this.type = type; |
| 49 | 0 | } |
| 50 | |
|
| 51 | |
public String getCluId() { |
| 52 | 0 | return cluId; |
| 53 | |
} |
| 54 | |
|
| 55 | |
public void setCluId(String cluId) { |
| 56 | 0 | this.cluId = cluId; |
| 57 | 0 | } |
| 58 | |
|
| 59 | |
} |