mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
20 lines
299 B
Java
20 lines
299 B
Java
package org.tests.model.onetoone;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
|
|
@Entity
|
|
public class OtoAone {
|
|
|
|
@Id
|
|
private String id;
|
|
|
|
private String description;
|
|
|
|
public OtoAone(String id, String description){
|
|
this.id = id;
|
|
this.description = description;
|
|
}
|
|
|
|
}
|