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

📄 articleuser.java

📁 随着信息技术的飞速发展、网上信息量发布的不断增大。针对文章管理这一环节
💻 JAVA
字号:
package com.web.common.bean;

import java.util.Date;


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

public class ArticleUser  implements java.io.Serializable {


    // Fields    

     private long id;
     private String name;
     private String password;
     private String question;
     private String answer;
     private String email;
     private String sex;
     private String address;
     private Date registerDate;
     private String telephone;
     private String zip;


    // Constructors

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

	/** minimal constructor */
    public ArticleUser(String name, String password, String email, String address) {
        this.name = name;
        this.password = password;
        this.email = email;
        this.address = address;
    }
    
    /** full constructor */
    public ArticleUser(String name, String password, String question, String answer, String email, String sex, String address, Date registerDate, String telephone, String zip) {
        this.name = name;
        this.password = password;
        this.question = question;
        this.answer = answer;
        this.email = email;
        this.sex = sex;
        this.address = address;
        this.registerDate = registerDate;
        this.telephone = telephone;
        this.zip = zip;
    }

   
    // Property accessors

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

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

    public String getPassword() {
        return this.password;
    }
    
    public void setPassword(String password) {
        this.password = password;
    }

    public String getQuestion() {
        return this.question;
    }
    
    public void setQuestion(String question) {
        this.question = question;
    }

    public String getAnswer() {
        return this.answer;
    }
    
    public void setAnswer(String answer) {
        this.answer = answer;
    }

    public String getEmail() {
        return this.email;
    }
    
    public void setEmail(String email) {
        this.email = email;
    }

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

    public Date getRegisterDate() {
        return this.registerDate;
    }
    
    public void setRegisterDate(Date registerDate) {
        this.registerDate = registerDate;
    }

    public String getTelephone() {
        return this.telephone;
    }
    
    public void setTelephone(String telephone) {
        this.telephone = telephone;
    }

    public String getZip() {
        return this.zip;
    }
    
    public void setZip(String zip) {
        this.zip = zip;
    }
   








}

⌨️ 快捷键说明

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