Back to project page android-orm-benchmark.
The source code is released under:
Apache License
If you think the Android project android-orm-benchmark listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.littleinc.orm_benchmark.greendao; /* w w w .j a va 2 s . com*/ // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. Enable "keep" sections if you want to edit. /** * Entity mapped to table USER. */ public class User { private String last_name; private String first_name; private Long id; public User() { } public User(Long id) { this.id = id; } public User(String last_name, String first_name, Long id) { this.last_name = last_name; this.first_name = first_name; this.id = id; } public String getLast_name() { return last_name; } public void setLast_name(String last_name) { this.last_name = last_name; } public String getFirst_name() { return first_name; } public void setFirst_name(String first_name) { this.first_name = first_name; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } }