| 1 | |
package org.kuali.student.lum.lu.bo; |
| 2 | |
|
| 3 | |
import javax.persistence.Column; |
| 4 | |
|
| 5 | |
import org.kuali.student.core.bo.KsBusinessObjectBase; |
| 6 | |
|
| 7 | 0 | public class CluFeeAmount extends KsBusinessObjectBase { |
| 8 | |
|
| 9 | |
private static final long serialVersionUID = -6424787945578569434L; |
| 10 | |
|
| 11 | |
|
| 12 | |
private String cluFeeRecordId; |
| 13 | |
|
| 14 | |
@Column(name="CURRENCY_TYPE") |
| 15 | |
private String currencyTypeKey; |
| 16 | |
|
| 17 | |
@Column(name="CURRENCY_QUANT") |
| 18 | |
private Integer currencyQuantity; |
| 19 | |
|
| 20 | |
|
| 21 | |
public String getCluFeeRecordId() { |
| 22 | 0 | return cluFeeRecordId; |
| 23 | |
} |
| 24 | |
|
| 25 | |
public void setCluFeeRecordId(String cluFeeRecordId) { |
| 26 | 0 | this.cluFeeRecordId = cluFeeRecordId; |
| 27 | 0 | } |
| 28 | |
|
| 29 | |
public String getCurrencyTypeKey() { |
| 30 | 0 | return currencyTypeKey; |
| 31 | |
} |
| 32 | |
|
| 33 | |
public void setCurrencyTypeKey(String currencyTypeKey) { |
| 34 | 0 | this.currencyTypeKey = currencyTypeKey; |
| 35 | 0 | } |
| 36 | |
|
| 37 | |
public Integer getCurrencyQuantity() { |
| 38 | 0 | return currencyQuantity; |
| 39 | |
} |
| 40 | |
|
| 41 | |
public void setCurrencyQuantity(Integer currencyQuantity) { |
| 42 | 0 | this.currencyQuantity = currencyQuantity; |
| 43 | 0 | } |
| 44 | |
|
| 45 | |
} |