📄 mnounce.java
字号:
package cn.hope.mana.pojo;
import java.io.Serializable;
import java.util.Date;
import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class MNounce implements Serializable {
/** identifier field */
private Integer NId;
/** persistent field */
private String flag;
/** persistent field */
private String NContent;
/** persistent field */
private Date NTime;
/** persistent field */
private String NTitle;
/** nullable persistent field */
private cn.hope.mana.pojo.MNtype MNtype;
/** full constructor */
public MNounce(String flag, String NContent, Date NTime, String NTitle, cn.hope.mana.pojo.MNtype MNtype) {
this.flag = flag;
this.NContent = NContent;
this.NTime = NTime;
this.NTitle = NTitle;
this.MNtype = MNtype;
}
/** default constructor */
public MNounce() {
}
/** minimal constructor */
public MNounce(String flag, String NContent, Date NTime, String NTitle) {
this.flag = flag;
this.NContent = NContent;
this.NTime = NTime;
this.NTitle = NTitle;
}
public Integer getNId() {
return this.NId;
}
public void setNId(Integer NId) {
this.NId = NId;
}
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public String getNContent() {
return this.NContent;
}
public void setNContent(String NContent) {
this.NContent = NContent;
}
public Date getNTime() {
return this.NTime;
}
public void setNTime(Date NTime) {
this.NTime = NTime;
}
public String getNTitle() {
return this.NTitle;
}
public void setNTitle(String NTitle) {
this.NTitle = NTitle;
}
public cn.hope.mana.pojo.MNtype getMNtype() {
return this.MNtype;
}
public void setMNtype(cn.hope.mana.pojo.MNtype MNtype) {
this.MNtype = MNtype;
}
public String toString() {
return new ToStringBuilder(this)
.append("NId", getNId())
.toString();
}
/****************lijia******************/
private Date startTime;
private Date endTime;
private String[] nIds;
public Date getEndTime() {
return endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
public String[] getNIds() {
return nIds;
}
public void setNIds(String[] ids) {
nIds = ids;
}
public Date getStartTime() {
return startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
/***************************************/
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -