View Javadoc

1   package org.kuali.student.r2.lum.lu.entity;
2   
3   import javax.persistence.Embedded;
4   import javax.persistence.Entity;
5   import javax.persistence.Table;
6   
7   import org.kuali.student.r1.common.entity.BaseEntity;
8   import org.kuali.student.r1.common.entity.CurrencyAmount;
9   
10  @Entity
11  @Table(name = "KSLU_CLU_FEE_AMOUNT")
12  public class CluFeeAmount extends BaseEntity{
13  
14  	@Embedded
15  	private CurrencyAmount currencyAmount;
16  	
17  	public CurrencyAmount getCurrencyAmount() {
18  		return currencyAmount;
19  	}
20  
21  	public void setCurrencyAmount(CurrencyAmount currencyAmount) {
22  		this.currencyAmount = currencyAmount;
23  	}
24  		
25  }