mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
30 lines
513 B
Java
30 lines
513 B
Java
package org.tests.model.basic;
|
|
|
|
import javax.persistence.DiscriminatorValue;
|
|
import javax.persistence.Entity;
|
|
|
|
|
|
/**
|
|
* Child bean B
|
|
*/
|
|
@Entity
|
|
@DiscriminatorValue("childB")
|
|
public class OCachedInhChildB extends OCachedInhRoot {
|
|
String childBData;
|
|
|
|
/**
|
|
* @return the childBData
|
|
*/
|
|
public String getChildBData() {
|
|
return childBData;
|
|
}
|
|
|
|
/**
|
|
* @param childBData
|
|
* the childBData to set
|
|
*/
|
|
public void setChildBData(String childBData) {
|
|
this.childBData = childBData;
|
|
}
|
|
}
|