blob: b95ddcafe22ff289de220587b7940a4404c6dc55 [file] [log] [blame]
package jpql.query;
import java.io.Serializable;
import java.util.List;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entity
@SuppressWarnings("unused")
public class Home implements Serializable {
private List<Phone> phones;
@Id
private String city;
}