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

📄 userinfovo.java

📁 典型实用的利用tapstry、spring、hibernate、框架的实例
💻 JAVA
字号:
/*
 * Created on 2004-10-31
 * 
 * http://www.open-v.com 提供代码的维护工作
 */
package com.openv.spring.domainmodel;

import java.io.Serializable;
import java.util.List;

/**
 * 用户信息值对象
 * 
 * @author luoshifei
 */
public class UserInfoVO implements Serializable {
    private String username;

    private String password;

    private String repassword;

    private String email;

    private List selectedinterests;

    private String country;

    /**
     * @return Returns the country.
     */
    public String getCountry() {
        return country;
    }

    /**
     * @param country
     *            The country to set.
     */
    public void setCountry(String country) {
        this.country = country;
    }

    /**
     * @return Returns the email.
     */
    public String getEmail() {
        return email;
    }

    /**
     * @param email
     *            The email to set.
     */
    public void setEmail(String email) {
        this.email = email;
    }

    /**
     * @return Returns the selectedinterests.
     */
    public List getSelectedinterests() {
        return selectedinterests;
    }

    /**
     * @param selectedinterests
     *            The selectedinterests to set.
     */
    public void setSelectedinterests(List selectedinterests) {
        this.selectedinterests = selectedinterests;
    }

    /**
     * @return Returns the repassword.
     */
    public String getRepassword() {
        return repassword;
    }

    /**
     * @param repassword
     *            The repassword to set.
     */
    public void setRepassword(String repassword) {
        this.repassword = repassword;
    }

    /**
     * @return Returns the password.
     */
    public String getPassword() {
        return password;
    }

    /**
     * @param password
     *            The password to set.
     */
    public void setPassword(String password) {
        this.password = password;
    }

    /**
     * @return Returns the username.
     */
    public String getUsername() {
        return username;
    }

    /**
     * @param username
     *            The username to set.
     */
    public void setUsername(String username) {
        this.username = username;
    }
}

⌨️ 快捷键说明

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