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