📄 msubfun.java
字号:
package cn.hope.mana.pojo;
import java.io.Serializable;
import java.util.Set;
import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class MSubfun implements Serializable {
/** identifier field */
private Integer subId;
/** persistent field */
private String flag;
/** persistent field */
private String level;
/** persistent field */
private String msName;
/** nullable persistent field */
private cn.hope.mana.pojo.MMainfun MMainfun;
/** persistent field */
private Set MActions;
/** persistent field */
private Set MGpowers;
/** full constructor */
public MSubfun(String flag, String level, String msName, cn.hope.mana.pojo.MMainfun MMainfun, Set MActions, Set MGpowers) {
this.flag = flag;
this.level = level;
this.msName = msName;
this.MMainfun = MMainfun;
this.MActions = MActions;
this.MGpowers = MGpowers;
}
/** default constructor */
public MSubfun() {
}
/** minimal constructor */
public MSubfun(String flag, String level, String msName, Set MActions, Set MGpowers) {
this.flag = flag;
this.level = level;
this.msName = msName;
this.MActions = MActions;
this.MGpowers = MGpowers;
}
public Integer getSubId() {
return this.subId;
}
public void setSubId(Integer subId) {
this.subId = subId;
}
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public String getLevel() {
return this.level;
}
public void setLevel(String level) {
this.level = level;
}
public String getMsName() {
return this.msName;
}
public void setMsName(String msName) {
this.msName = msName;
}
public cn.hope.mana.pojo.MMainfun getMMainfun() {
return this.MMainfun;
}
public void setMMainfun(cn.hope.mana.pojo.MMainfun MMainfun) {
this.MMainfun = MMainfun;
}
public Set getMActions() {
return this.MActions;
}
public void setMActions(Set MActions) {
this.MActions = MActions;
}
public Set getMGpowers() {
return this.MGpowers;
}
public void setMGpowers(Set MGpowers) {
this.MGpowers = MGpowers;
}
public String toString() {
return new ToStringBuilder(this)
.append("subId", getSubId())
.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -