mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
21 lines
299 B
Java
21 lines
299 B
Java
package org.tests.model.bridge;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.Id;
|
|
import java.util.UUID;
|
|
|
|
@Entity
|
|
public class BSite {
|
|
|
|
@Id @GeneratedValue
|
|
UUID id;
|
|
|
|
String name;
|
|
|
|
public BSite(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
}
|