| 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.KsBusinessObjectBase; | 
  | 8 |  |   | 
  | 9 | 0 |  public class CluAtpTypeKey extends KsBusinessObjectBase { | 
  | 10 |  |   | 
  | 11 |  |      private static final long serialVersionUID = -993027818102112799L; | 
  | 12 |  |   | 
  | 13 |  |      @ManyToOne | 
  | 14 |  |      @JoinColumn(name = "CLU_ID") | 
  | 15 |  |      private String cluId; | 
  | 16 |  |       | 
  | 17 |  |      @Column(name = "ATP_TYPE_KEY") | 
  | 18 |  |      private String atpTypeKey; | 
  | 19 |  |   | 
  | 20 |  |       | 
  | 21 |  |      public String getCluId() { | 
  | 22 | 0 |          return cluId; | 
  | 23 |  |      } | 
  | 24 |  |   | 
  | 25 |  |      public void setCluId(String cluId) { | 
  | 26 | 0 |          this.cluId = cluId; | 
  | 27 | 0 |      } | 
  | 28 |  |   | 
  | 29 |  |      public String getAtpTypeKey() { | 
  | 30 | 0 |          return atpTypeKey; | 
  | 31 |  |      } | 
  | 32 |  |   | 
  | 33 |  |      public void setAtpTypeKey(String atpTypeKey) { | 
  | 34 | 0 |          this.atpTypeKey = atpTypeKey; | 
  | 35 | 0 |      } | 
  | 36 |  |   | 
  | 37 |  |  } |