50b6e9579728001d1b69a3336d673cb1

来自「客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户」· 代码 · 共 96 行

TXT
96
字号
/**
 * 
 */
package com.qrsx.qrsxcrm.form;

import com.qrsx.qrsxcrm.model.Employee;
import com.qrsx.qrsxcrm.model.Role;

/**
 * 用户实体FORM
 * @author Administrator
 *
 */
public class UserForm
{
	private String id;		//主键
	private String userName;		//用户姓名
	private String password;		//用户密码
	private Employee employee;//用户所对应的职工(一对一)
	private Role role;		//用户角色
	private String reamrk;//备注
	/**
	 * @return the employee
	 */
	public Employee getEmployee() {
		return employee;
	}
	/**
	 * @param employee the employee to set
	 */
	public void setEmployee(Employee employee) {
		this.employee = employee;
	}
	/**
	 * @return the id
	 */
	public String getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(String id) {
		this.id = id;
	}
	/**
	 * @return the password
	 */
	public String getPassword() {
		return password;
	}
	/**
	 * @param password the password to set
	 */
	public void setPassword(String password) {
		this.password = password;
	}
	/**
	 * @return the reamrk
	 */
	public String getReamrk() {
		return reamrk;
	}
	/**
	 * @param reamrk the reamrk to set
	 */
	public void setReamrk(String reamrk) {
		this.reamrk = reamrk;
	}
	/**
	 * @return the role
	 */
	public Role getRole() {
		return role;
	}
	/**
	 * @param role the role to set
	 */
	public void setRole(Role role) {
		this.role = role;
	}
	/**
	 * @return 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 + =
减小字号Ctrl + -
显示快捷键?