?? manager.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 + -