1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package edu.sampleu.travel.bo; |
17 | |
|
18 | |
import org.kuali.rice.core.util.type.KualiPercent; |
19 | |
import org.kuali.rice.kns.bo.InactivatableFromToImpl; |
20 | |
|
21 | |
import javax.persistence.Column; |
22 | |
import javax.persistence.Entity; |
23 | |
import javax.persistence.Id; |
24 | |
import javax.persistence.Table; |
25 | |
|
26 | |
@Entity |
27 | |
@Table(name = "TRV_ACCT_USE_RT") |
28 | |
public class TravelAccountUseRate extends InactivatableFromToImpl { |
29 | |
|
30 | |
@Id |
31 | |
@Column(name = "id") |
32 | |
private String id; |
33 | |
|
34 | |
@Column(name = "acct_num") |
35 | |
private String number; |
36 | |
|
37 | |
@Column(name = "rate") |
38 | |
private KualiPercent rate; |
39 | |
|
40 | |
public TravelAccountUseRate() { |
41 | 0 | super(); |
42 | 0 | } |
43 | |
|
44 | |
public String getId() { |
45 | 0 | return this.id; |
46 | |
} |
47 | |
|
48 | |
public void setId(String id) { |
49 | 0 | this.id = id; |
50 | 0 | } |
51 | |
|
52 | |
public String getNumber() { |
53 | 0 | return this.number; |
54 | |
} |
55 | |
|
56 | |
public void setNumber(String number) { |
57 | 0 | this.number = number; |
58 | 0 | } |
59 | |
|
60 | |
public KualiPercent getRate() { |
61 | 0 | return this.rate; |
62 | |
} |
63 | |
|
64 | |
public void setRate(KualiPercent rate) { |
65 | 0 | this.rate = rate; |
66 | 0 | } |
67 | |
} |