package po;
/**
* TbUser entity. @author MyEclipse Persistence Tools
*/
public class TbUser implements java.io.Serializable {
// Fields
private Integer id;
private String username;
private String password;
// Constructors
/** default constructor */
public TbUser() {
}
/** full constructor */
public TbUser(String username, String password) {
this.username = username;
this.password = password;
}
// Property accessors
public Integer getId() {