Created
January 21, 2013 21:38
-
-
Save galex/4589690 to your computer and use it in GitHub Desktop.
Serializable entity with a transient serialVersionUID (to be compatible with stORM)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Entity | |
public class Place implements Serializable { | |
private transient static final long serialVersionUID = 4536096422727404303L; | |
private long id; | |
private String title; | |
private double lat; | |
private double lng; | |
private String address; | |
private String uri; | |
private String description; | |
private String sector; | |
private String ownerName; | |
private String ownerEmail; | |
private String youtubeId; | |
private Type type; | |
// accessors | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment