user.java

来自「企业进销存源码」· Java 代码 · 共 126 行

JAVA
126
字号
package com.business.vo;

/**
 * @author Administrator
 *
 * To change this generated comment edit the template variable "typecomment":
 * Window>Preferences>Java>Templates.
 * To enable and disable the creation of type comments go to
 * Window>Preferences>Java>Code Generation.
 */
public class User {
	private String userId;

    /** identifier field */
    private String userName;

    /** identifier field */
    private String userPwd;

    /** identifier field */
    private String roleId;

    /** identifier field */
    private String userPhone;

    /** identifier field */
    private String userAddress;

	/**
	 * Returns the roleId.
	 * @return String
	 */
	public String getRoleId() {
		return roleId;
	}

	/**
	 * Returns the userAddress.
	 * @return String
	 */
	public String getUserAddress() {
		return userAddress;
	}

	/**
	 * Returns the userId.
	 * @return String
	 */
	public String getUserId() {
		return userId;
	}

	/**
	 * Returns the userName.
	 * @return String
	 */
	public String getUserName() {
		return userName;
	}

	/**
	 * Returns the userPhone.
	 * @return String
	 */
	public String getUserPhone() {
		return userPhone;
	}

	/**
	 * Returns the userPwd.
	 * @return String
	 */
	public String getUserPwd() {
		return userPwd;
	}

	/**
	 * Sets the roleId.
	 * @param roleId The roleId to set
	 */
	public void setRoleId(String roleId) {
		this.roleId = roleId;
	}

	/**
	 * Sets the userAddress.
	 * @param userAddress The userAddress to set
	 */
	public void setUserAddress(String userAddress) {
		this.userAddress = userAddress;
	}

	/**
	 * Sets the userId.
	 * @param userId The userId to set
	 */
	public void setUserId(String userId) {
		this.userId = userId;
	}

	/**
	 * Sets the userName.
	 * @param userName The userName to set
	 */
	public void setUserName(String userName) {
		this.userName = userName;
	}

	/**
	 * Sets the userPhone.
	 * @param userPhone The userPhone to set
	 */
	public void setUserPhone(String userPhone) {
		this.userPhone = userPhone;
	}

	/**
	 * Sets the userPwd.
	 * @param userPwd The userPwd to set
	 */
	public void setUserPwd(String userPwd) {
		this.userPwd = userPwd;
	}

}

⌨️ 快捷键说明

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