Skip to content

Instantly share code, notes, and snippets.

@saqibmehmoodgit
Created April 5, 2017 07:16
Show Gist options
  • Save saqibmehmoodgit/eedae2faaf16c10260ba71b61b745a97 to your computer and use it in GitHub Desktop.
Save saqibmehmoodgit/eedae2faaf16c10260ba71b61b745a97 to your computer and use it in GitHub Desktop.
public class User implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
/*
* primary key user id
*/
@Column(name = "user_id", nullable = false)
@Basic(fetch = FetchType.LAZY)
@Id
@XmlElement
@GeneratedValue
Integer userId;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment