testuser.java

来自「自己写的一个struts+spring+hibernate测试程序」· Java 代码 · 共 102 行

JAVA
102
字号
package com.model;



/**
 * Testuser generated by MyEclipse Persistence Tools
 */

public class Testuser  implements java.io.Serializable {


    // Fields    

     private Long userId;
     private String userName;
     private String password;
     private Long version;
     private String sex;
     private String address;


    // Constructors

    /** default constructor */
    public Testuser() {
    }

	/** minimal constructor */
    public Testuser(Long userId) {
        this.userId = userId;
    }
    
    /** full constructor */
    public Testuser(Long userId, String userName, String password, Long version, String sex, String address) {
        this.userId = userId;
        this.userName = userName;
        this.password = password;
        this.version = version;
        this.sex = sex;
        this.address = address;
    }

   
    // Property accessors

    public Long getUserId() {
        return this.userId;
    }
    
    public void setUserId(Long userId) {
        this.userId = userId;
    }

    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;
    }

    public Long getVersion() {
        return this.version;
    }
    
    public void setVersion(Long version) {
        this.version = version;
    }

    public String getSex() {
        return this.sex;
    }
    
    public void setSex(String sex) {
        this.sex = sex;
    }

    public String getAddress() {
        return this.address;
    }
    
    public void setAddress(String address) {
        this.address = address;
    }
   








}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?