mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
19 lines
249 B
Java
19 lines
249 B
Java
package org.tests.model;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
@Entity
|
|
public class EWhoProps extends EWhoPropsSuper {
|
|
|
|
String name;
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
}
|