View Javadoc

1   package org.kuali.student.enrollment.class1.lui.model;
2   
3   import javax.persistence.Entity;
4   import javax.persistence.JoinColumn;
5   import javax.persistence.ManyToOne;
6   import javax.persistence.Table;
7   
8   import org.kuali.student.r2.common.entity.BaseAttributeEntity;
9   import org.kuali.student.r2.common.infc.Attribute;
10  
11  
12  @Entity
13  @Table(name = "KSEN_LUI_LU_CD_ATTR")
14  public class LuCodeAttributeEntity extends BaseAttributeEntity<LuCodeEntity> {
15  
16  	public LuCodeAttributeEntity() {
17  		super();
18  	}
19  
20  	public LuCodeAttributeEntity(Attribute att, LuCodeEntity owner) {
21  		super(att, owner);
22  	}
23      
24    
25  }