Testuser.java
资源名称:Ajax.rar [点击查看]
上传用户:sz_mindeo
上传日期:2015-07-22
资源大小:913k
文件大小:1k
源码类别:
Ajax
开发平台:
Java
- package com.haiku.bean;
- /**
- * Testuser entity.
- *
- * @author MyEclipse Persistence Tools
- */
- public class Testuser implements java.io.Serializable {
- // Fields
- private String userName;
- private String password;
- // private String isLogin;
- // Constructors
- /** default constructor */
- public Testuser() {
- }
- /** minimal constructor */
- public Testuser(String userName) {
- this.userName = userName;
- }
- /** full constructor */
- public Testuser(String userName, String password) {
- this.userName = userName;
- this.password = password;
- }
- // Property accessors
- public String getUserName() {
- return this.userName;
- }
- public void setUserName(String username) {
- this.userName = username;
- }
- public String getPassword() {
- return this.password;
- }
- public void setPassword(String password) {
- this.password = password;
- }
- }