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 @Entity
12 @Table(name = "KSEN_LUI_AFFIL_ORG_ATTR")
13 public class LuiAffiliatedOrgAttributeEntity extends BaseAttributeEntity<LuiAffiliatedOrgEntity> {
14
15 public LuiAffiliatedOrgAttributeEntity() {
16 super();
17 }
18
19 public LuiAffiliatedOrgAttributeEntity(Attribute att,
20 LuiAffiliatedOrgEntity owner) {
21 super(att, owner);
22 }
23
24
25 }