mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
12 lines
203 B
Java
12 lines
203 B
Java
package org.unenhanced;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
|
|
// Not in org.example, i.e. not enhanced at build time
|
|
@Entity
|
|
public class Wotsit {
|
|
@Id
|
|
public String name;
|
|
}
|