001    package org.kuali.student.lum.lu.bo;
002    
003    import javax.persistence.Column;
004    import javax.persistence.JoinColumn;
005    import javax.persistence.ManyToOne;
006    
007    import org.kuali.student.core.bo.KsMetaBusinessObjectBase;
008    
009    public class LuCode extends KsMetaBusinessObjectBase {
010    
011        private static final long serialVersionUID = -4157117953758049897L;
012    
013        @Column(name = "DESCR")
014        private String description;
015    
016        @Column(name = "VALUE")
017        private String value;
018    
019        @Column(name = "TYPE")
020        private String type;
021    
022        @ManyToOne
023        @JoinColumn(name="CLU_ID")
024        private String cluId;
025    
026        
027        public String getDescription() {
028            return description;
029        }
030    
031        public void setDescription(String description) {
032            this.description = description;
033        }
034    
035        public String getValue() {
036            return value;
037        }
038    
039        public void setValue(String value) {
040            this.value = value;
041        }
042    
043        public String getType() {
044            return type;
045        }
046    
047        public void setType(String type) {
048            this.type = type;
049        }
050    
051        public String getCluId() {
052            return cluId;
053        }
054    
055        public void setCluId(String cluId) {
056            this.cluId = cluId;
057        }
058    
059    }