manager.java

来自「SSH 开发网上订餐系统。由于SSH相关包太大不方便上传。请自行导入。」· Java 代码 · 共 93 行

JAVA
93
字号
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 + =
减小字号Ctrl + -
显示快捷键?