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

📄 userkey.java

📁 本文件是设计学习的很好的书籍
💻 JAVA
字号:
package com.yuanzhen.model;



/**
 * Userkey generated by MyEclipse - Hibernate Tools
 */

public class Userkey  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private String username;
     private String password;
     private Integer want;


    // Constructors

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

	/** minimal constructor */
    public Userkey(Integer id) {
        this.id = id;
    }
    
    /** full constructor */
    public Userkey(Integer id, String username, String password, Integer want) {
        this.id = id;
        this.username = username;
        this.password = password;
        this.want = want;
    }

   
    // Property accessors

    public Integer getId() {
        return this.id;
    }
    
    public void setId(Integer id) {
        this.id = id;
    }

    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 Integer getWant() {
        return this.want;
    }
    
    public void setWant(Integer want) {
        this.want = want;
    }
   








}

⌨️ 快捷键说明

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