1 package org.kuali.student.lum.lu.bo; 2 3 import javax.persistence.Column; 4 5 import org.kuali.student.core.bo.KsBusinessObjectBase; 6 7 public class CluIdentifier extends KsBusinessObjectBase { 8 9 private static final long serialVersionUID = -3231108861178451995L; 10 11 @Column(name = "CD") 12 private String code; 13 14 @Column(name = "SHRT_NAME") 15 private String shortName; 16 17 @Column(name = "LNG_NAME") 18 private String longName; 19 20 @Column(name = "LVL") 21 private String level; 22 23 @Column(name = "DIV") 24 private String division; 25 26 @Column(name = "VARTN") 27 private String variation; 28 29 @Column(name = "SUFX_CD") 30 private String suffixCode; 31 32 @Column(name = "ORG_ID") 33 private String orgId; 34 35 @Column(name = "TYPE") 36 private String type; 37 38 @Column(name = "ST") 39 private String state; 40 41 42 public String getCode() { 43 return code; 44 } 45 46 public void setCode(String code) { 47 this.code = code; 48 } 49 50 public String getShortName() { 51 return shortName; 52 } 53 54 public void setShortName(String shortName) { 55 this.shortName = shortName; 56 } 57 58 public String getLongName() { 59 return longName; 60 } 61 62 public void setLongName(String longName) { 63 this.longName = longName; 64 } 65 66 public String getLevel() { 67 return level; 68 } 69 70 public void setLevel(String level) { 71 this.level = level; 72 } 73 74 public String getDivision() { 75 return division; 76 } 77 78 public void setDivision(String division) { 79 this.division = division; 80 } 81 82 public String getVariation() { 83 return variation; 84 } 85 86 public void setVariation(String variation) { 87 this.variation = variation; 88 } 89 90 public String getSuffixCode() { 91 return suffixCode; 92 } 93 94 public void setSuffixCode(String suffixCode) { 95 this.suffixCode = suffixCode; 96 } 97 98 public String getOrgId() { 99 return orgId; 100 } 101 102 public void setOrgId(String orgId) { 103 this.orgId = orgId; 104 } 105 106 public String getType() { 107 return type; 108 } 109 110 public void setType(String type) { 111 this.type = type; 112 } 113 114 public String getState() { 115 return state; 116 } 117 118 public void setState(String state) { 119 this.state = state; 120 } 121 122 }