mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
34 lines
533 B
Java
34 lines
533 B
Java
package com.avaje.tests.model.basic;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
|
|
@Entity
|
|
public class ENullCollectionDetail {
|
|
|
|
@Id
|
|
Integer id;
|
|
|
|
String something;
|
|
|
|
public ENullCollectionDetail() {
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getSomething() {
|
|
return something;
|
|
}
|
|
|
|
public void setSomething(String something) {
|
|
this.something = something;
|
|
}
|
|
|
|
}
|