1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.r2.lum.lu.entity;
17
18 import java.util.Date;
19
20 import javax.persistence.Column;
21 import javax.persistence.Entity;
22 import javax.persistence.Table;
23 import javax.persistence.Temporal;
24 import javax.persistence.TemporalType;
25
26 import org.kuali.student.r1.common.entity.BaseEntity;
27
28
29
30
31
32
33
34 @Entity
35 @Table(name = "KSLU_CLU_AFFIL_ORG")
36 public class AffiliatedOrg extends BaseEntity{
37
38 @Column(name = "ORG_ID")
39 private String orgId;
40
41 @Column(name = "PERCT")
42 private Long percentage;
43
44 @Temporal(TemporalType.TIMESTAMP)
45 @Column(name = "EFF_DT")
46 private Date effectiveDate;
47
48 @Temporal(TemporalType.TIMESTAMP)
49 @Column(name = "EXPIR_DT")
50 private Date expirationDate;
51
52 public String getOrgId() {
53 return orgId;
54 }
55
56 public void setOrgId(String orgId) {
57 this.orgId = orgId;
58 }
59
60 public Long getPercentage() {
61 return percentage;
62 }
63
64 public void setPercentage(Long percentage) {
65 this.percentage = percentage;
66 }
67
68 public Date getEffectiveDate() {
69 return effectiveDate;
70 }
71
72 public void setEffectiveDate(Date effectiveDate) {
73 this.effectiveDate = effectiveDate;
74 }
75
76 public Date getExpirationDate() {
77 return expirationDate;
78 }
79
80 public void setExpirationDate(Date expirationDate) {
81 this.expirationDate = expirationDate;
82 }
83 }