1 | |
package org.kuali.student.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.common.entity.BaseEntity; |
8 | |
import org.kuali.student.common.entity.CurrencyAmount; |
9 | |
|
10 | |
@Entity |
11 | |
@Table(name = "KSLU_CLU_FEE_AMOUNT") |
12 | 255 | public class CluFeeAmount extends BaseEntity{ |
13 | |
|
14 | |
@Embedded |
15 | |
private CurrencyAmount currencyAmount; |
16 | |
|
17 | |
public CurrencyAmount getCurrencyAmount() { |
18 | 313 | return currencyAmount; |
19 | |
} |
20 | |
|
21 | |
public void setCurrencyAmount(CurrencyAmount currencyAmount) { |
22 | 136 | this.currencyAmount = currencyAmount; |
23 | 136 | } |
24 | |
|
25 | |
} |