mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
21 lines
361 B
Java
21 lines
361 B
Java
package com.avaje.tests.model.basic;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
@Entity
|
|
public class EOptOneC extends BasicDomain {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
String nameForC;
|
|
|
|
public String getNameForC() {
|
|
return nameForC;
|
|
}
|
|
|
|
public void setNameForC(String nameForA) {
|
|
this.nameForC = nameForA;
|
|
}
|
|
|
|
}
|