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

📄 manager.java

📁 SSH 开发网上订餐系统。由于SSH相关包太大不方便上传。请自行导入。
💻 JAVA
字号:
package com.web.model;

/**
 * Manager entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Manager implements java.io.Serializable {

	// Fields

	private String MId;
	private String MPassword;
	private String MName;
	private String MSex;
	private String MAge;
	private String MMemo;

	// Constructors

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

	/** minimal constructor */
	public Manager(String MId, String MPassword) {
		this.MId = MId;
		this.MPassword = MPassword;
	}

	/** full constructor */
	public Manager(String MId, String MPassword, String MName, String MSex,
			String MAge, String MMemo) {
		this.MId = MId;
		this.MPassword = MPassword;
		this.MName = MName;
		this.MSex = MSex;
		this.MAge = MAge;
		this.MMemo = MMemo;
	}

	// Property accessors

	public String getMId() {
		return this.MId;
	}

	public void setMId(String MId) {
		this.MId = MId;
	}

	public String getMPassword() {
		return this.MPassword;
	}

	public void setMPassword(String MPassword) {
		this.MPassword = MPassword;
	}

	public String getMName() {
		return this.MName;
	}

	public void setMName(String MName) {
		this.MName = MName;
	}

	public String getMSex() {
		return this.MSex;
	}

	public void setMSex(String MSex) {
		this.MSex = MSex;
	}

	public String getMAge() {
		return this.MAge;
	}

	public void setMAge(String MAge) {
		this.MAge = MAge;
	}

	public String getMMemo() {
		return this.MMemo;
	}

	public void setMMemo(String MMemo) {
		this.MMemo = MMemo;
	}

}

⌨️ 快捷键说明

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