mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
33 lines
486 B
Java
33 lines
486 B
Java
package com.avaje.tests.model.basic;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
|
|
import org.joda.time.LocalTime;
|
|
|
|
@Entity
|
|
public class TJodaEntity {
|
|
|
|
@Id
|
|
Integer id;
|
|
|
|
LocalTime localTime;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public LocalTime getLocalTime() {
|
|
return localTime;
|
|
}
|
|
|
|
public void setLocalTime(LocalTime localTime) {
|
|
this.localTime = localTime;
|
|
}
|
|
|
|
}
|