123456789101112131415161718192021222324 |
- package models;
- import java.util.*;
- import javax.persistence.*;
- import play.db.ebean.*;
- import play.db.ebean.Model.Finder;
- import play.data.format.*;
- import play.data.validation.*;
- @Entity
- public class World extends Model {
- @Id
- public Long id;
- @Column(name = "randomNumber")
- public Long randomNumber;
- public static Finder<Long,World> find = new Finder<Long,World>(
- Long.class, World.class
- );
- }
|