Skip to content

Instantly share code, notes, and snippets.

@masztalski
Created November 27, 2017 13:22
Show Gist options
  • Save masztalski/ec5737c6e9c363fe0742ba18742da902 to your computer and use it in GitHub Desktop.
Save masztalski/ec5737c6e9c363fe0742ba18742da902 to your computer and use it in GitHub Desktop.
@DatabaseTable(tableName = "user_table")
public class User {
@DatabaseField(id = true)
private int userID;
@DatabaseField
private String userName;
@DatabaseField
private String userPhone;
public User(){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment