mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
19 lines
362 B
Java
19 lines
362 B
Java
package org.tests.aggregateformula;
|
|
|
|
import javax.persistence.DiscriminatorColumn;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Inheritance;
|
|
import javax.persistence.Table;
|
|
|
|
@Entity
|
|
@Inheritance
|
|
@Table(name = "iaf_segment")
|
|
@DiscriminatorColumn(name = "ptype")
|
|
public class IAFBaseSegment {
|
|
|
|
@Id
|
|
private Long id;
|
|
|
|
}
|