| 1 |  |  package org.kuali.student.lum.lu.entity; | 
  | 2 |  |   | 
  | 3 |  |  import javax.persistence.Column; | 
  | 4 |  |  import javax.persistence.Entity; | 
  | 5 |  |  import javax.persistence.JoinColumn; | 
  | 6 |  |  import javax.persistence.ManyToOne; | 
  | 7 |  |  import javax.persistence.Table; | 
  | 8 |  |   | 
  | 9 |  |  import org.kuali.student.common.entity.BaseEntity; | 
  | 10 |  |   | 
  | 11 |  |  @Entity | 
  | 12 |  |  @Table(name = "KSLU_CLU_SET_JN_CLU") | 
  | 13 | 165 |  public class CluSetJoinVersionIndClu extends BaseEntity { | 
  | 14 |  |          @ManyToOne | 
  | 15 |  |          @JoinColumn(name = "CLU_SET_ID") | 
  | 16 |  |          private CluSet cluSet; | 
  | 17 |  |   | 
  | 18 |  |          @Column(name = "CLU_VER_IND_ID") | 
  | 19 |  |          private String cluVersionIndId; | 
  | 20 |  |   | 
  | 21 |  |          public CluSet getCluSet() { | 
  | 22 | 0 |                  return cluSet; | 
  | 23 |  |          } | 
  | 24 |  |   | 
  | 25 |  |          public void setCluSet(CluSet cluSet) { | 
  | 26 | 24 |                  this.cluSet = cluSet; | 
  | 27 | 24 |          } | 
  | 28 |  |   | 
  | 29 |  |          public String getCluVersionIndId() { | 
  | 30 | 248 |                  return cluVersionIndId; | 
  | 31 |  |          } | 
  | 32 |  |   | 
  | 33 |  |          public void setCluVersionIndId(String cluVersionIndId) { | 
  | 34 | 24 |                  this.cluVersionIndId = cluVersionIndId; | 
  | 35 | 24 |          } | 
  | 36 |  |  } |