1 | |
package org.kuali.student.enrollment.class1.lui.model; |
2 | |
|
3 | |
import java.util.Date; |
4 | |
|
5 | |
import javax.persistence.Column; |
6 | |
import javax.persistence.Entity; |
7 | |
import javax.persistence.Table; |
8 | |
import javax.persistence.Temporal; |
9 | |
import javax.persistence.TemporalType; |
10 | |
|
11 | |
import org.kuali.student.common.entity.KSEntityConstants; |
12 | |
import org.kuali.student.r2.common.entity.MetaEntity; |
13 | |
|
14 | |
@Entity |
15 | |
@Table(name = "KSEN_LUI_CAPACITY") |
16 | 0 | public class LuiCapacityEntity extends MetaEntity { |
17 | |
|
18 | |
@Column(name = "NAME") |
19 | |
private String name; |
20 | |
|
21 | |
@Column(name = "LUI_CAPACITY_TYPE") |
22 | |
private String type; |
23 | |
|
24 | |
@Column(name = "LUI_CAPACITY_STATE") |
25 | |
private String state; |
26 | |
|
27 | |
@Column(name = "DESCR_FORMATTED", length = KSEntityConstants.EXTRA_LONG_TEXT_LENGTH) |
28 | |
private String formatted; |
29 | |
|
30 | |
@Column(name = "DESCR_PLAIN", length = KSEntityConstants.EXTRA_LONG_TEXT_LENGTH, nullable = false) |
31 | |
private String plain; |
32 | |
|
33 | |
@Temporal(TemporalType.TIMESTAMP) |
34 | |
@Column(name = "EFF_DT") |
35 | |
private Date effectiveDate; |
36 | |
|
37 | |
@Temporal(TemporalType.TIMESTAMP) |
38 | |
@Column(name = "EXP_DT") |
39 | |
private Date expirationDate; |
40 | |
|
41 | |
@Column(name = "MAX_SEATS") |
42 | |
private Integer maxSeats; |
43 | |
|
44 | |
@Column(name = "PROCESSING_ORDER") |
45 | |
private Integer processingOrder; |
46 | |
|
47 | |
public String getName() { |
48 | 0 | return name; |
49 | |
} |
50 | |
|
51 | |
public void setName(String name) { |
52 | 0 | this.name = name; |
53 | 0 | } |
54 | |
|
55 | |
public String getType() { |
56 | 0 | return type; |
57 | |
} |
58 | |
|
59 | |
public void setType(String type) { |
60 | 0 | this.type = type; |
61 | 0 | } |
62 | |
|
63 | |
public String getState() { |
64 | 0 | return state; |
65 | |
} |
66 | |
|
67 | |
public void setState(String state) { |
68 | 0 | this.state = state; |
69 | 0 | } |
70 | |
|
71 | |
public String getFormatted() { |
72 | 0 | return formatted; |
73 | |
} |
74 | |
|
75 | |
public void setFormatted(String formatted) { |
76 | 0 | this.formatted = formatted; |
77 | 0 | } |
78 | |
|
79 | |
public String getPlain() { |
80 | 0 | return plain; |
81 | |
} |
82 | |
|
83 | |
public void setPlain(String plain) { |
84 | 0 | this.plain = plain; |
85 | 0 | } |
86 | |
|
87 | |
public Date getEffectiveDate() { |
88 | 0 | return effectiveDate; |
89 | |
} |
90 | |
|
91 | |
public void setEffectiveDate(Date effectiveDate) { |
92 | 0 | this.effectiveDate = effectiveDate; |
93 | 0 | } |
94 | |
|
95 | |
public Date getExpirationDate() { |
96 | 0 | return expirationDate; |
97 | |
} |
98 | |
|
99 | |
public void setExpirationDate(Date expirationDate) { |
100 | 0 | this.expirationDate = expirationDate; |
101 | 0 | } |
102 | |
|
103 | |
public Integer getMaxSeats() { |
104 | 0 | return maxSeats; |
105 | |
} |
106 | |
|
107 | |
public void setMaxSeats(Integer maxSeats) { |
108 | 0 | this.maxSeats = maxSeats; |
109 | 0 | } |
110 | |
|
111 | |
public Integer getProcessingOrder() { |
112 | 0 | return processingOrder; |
113 | |
} |
114 | |
|
115 | |
public void setProcessingOrder(Integer processingOrder) { |
116 | 0 | this.processingOrder = processingOrder; |
117 | 0 | } |
118 | |
} |