Skip to content

Instantly share code, notes, and snippets.

@wmuron
Created October 20, 2016 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wmuron/eacd55e09b053de9172e85801d54381e to your computer and use it in GitHub Desktop.
Save wmuron/eacd55e09b053de9172e85801d54381e to your computer and use it in GitHub Desktop.
Entity for DbAssist article
public class User {
private int id;
private String name;
private java.util.Date createdAtUtc;
public User(int id, String name, java.util.Date createdAtUtc) {
this.id = id;
this.name = name;
this.createdAtUtc = createdAtUtc;
}
//setters and getters
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment