| 1 | |
package org.kuali.student.enrollment.lui.service.model; |
| 2 | |
|
| 3 | |
import org.kuali.student.r2.common.entity.MetaEntity; |
| 4 | |
|
| 5 | |
import javax.persistence.Entity; |
| 6 | |
import javax.persistence.Temporal; |
| 7 | |
import javax.persistence.TemporalType; |
| 8 | |
import java.util.Date; |
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
@Entity |
| 14 | 0 | public class LuiEntity extends MetaEntity { |
| 15 | |
|
| 16 | |
private String luiCode; |
| 17 | |
|
| 18 | |
private String cluId; |
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
private Integer maxSeats; |
| 23 | |
|
| 24 | |
@Temporal(TemporalType.TIMESTAMP) |
| 25 | |
private Date effectiveDate; |
| 26 | |
|
| 27 | |
@Temporal(TemporalType.TIMESTAMP) |
| 28 | |
private Date expirationDate; |
| 29 | |
|
| 30 | |
public String getLuiCode() { |
| 31 | 0 | return luiCode; |
| 32 | |
} |
| 33 | |
|
| 34 | |
public void setLuiCode(String luiCode) { |
| 35 | 0 | this.luiCode = luiCode; |
| 36 | 0 | } |
| 37 | |
|
| 38 | |
public String getCluId() { |
| 39 | 0 | return cluId; |
| 40 | |
} |
| 41 | |
|
| 42 | |
public void setCluId(String cluId) { |
| 43 | 0 | this.cluId = cluId; |
| 44 | 0 | } |
| 45 | |
|
| 46 | |
public Integer getMaxSeats() { |
| 47 | 0 | return maxSeats; |
| 48 | |
} |
| 49 | |
|
| 50 | |
public void setMaxSeats(Integer maxSeats) { |
| 51 | 0 | this.maxSeats = maxSeats; |
| 52 | 0 | } |
| 53 | |
|
| 54 | |
public Date getEffectiveDate() { |
| 55 | 0 | return effectiveDate; |
| 56 | |
} |
| 57 | |
|
| 58 | |
public void setEffectiveDate(Date effectiveDate) { |
| 59 | 0 | this.effectiveDate = effectiveDate; |
| 60 | 0 | } |
| 61 | |
|
| 62 | |
public Date getExpirationDate() { |
| 63 | 0 | return expirationDate; |
| 64 | |
} |
| 65 | |
|
| 66 | |
public void setExpirationDate(Date expirationDate) { |
| 67 | 0 | this.expirationDate = expirationDate; |
| 68 | 0 | } |
| 69 | |
} |