⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testuser.java

📁 自己写的一个struts+spring+hibernate测试程序
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -