mangleapply.java
来自「spring+hibernate+struts开发的校务oa系统」· Java 代码 · 共 123 行
JAVA
123 行
package com.yondor.oa.db.mangleapply.dao;
import java.util.Date;
/**
* Mangleapply generated by MyEclipse - Hibernate Tools
*/
public class Mangleapply implements java.io.Serializable {
// Fields
private Long mangleapplyid;
private Date appltime;
private String applycause;
private Long applyop;
private Long replyop;
private Long equipment;
private String isread;
private String isfinish;
// Constructors
public String getIsread() {
return isread;
}
public void setIsread(String isread) {
this.isread = isread;
}
/** default constructor */
public Mangleapply() {
}
/** full constructor */
public Mangleapply(Date appltime, String applycause, Long applyop, Long replyop, Long equipment, String isread, String isfinish) {
this.appltime = appltime;
this.applycause = applycause;
this.applyop = applyop;
this.replyop = replyop;
this.equipment = equipment;
this.isread = isread;
this.isfinish = isfinish;
}
// Property accessors
public Long getMangleapplyid() {
return this.mangleapplyid;
}
public void setMangleapplyid(Long mangleapplyid) {
this.mangleapplyid = mangleapplyid;
}
public Date getAppltime() {
return this.appltime;
}
public void setAppltime(Date appltime) {
this.appltime = appltime;
}
public String getApplycause() {
return this.applycause;
}
public void setApplycause(String applycause) {
this.applycause = applycause;
}
public Long getApplyop() {
return this.applyop;
}
public void setApplyop(Long applyop) {
this.applyop = applyop;
}
public Long getReplyop() {
return this.replyop;
}
public void setReplyop(Long replyop) {
this.replyop = replyop;
}
public Long getEquipment() {
return this.equipment;
}
public void setEquipment(Long equipment) {
this.equipment = equipment;
}
public String getIsfinish() {
return this.isfinish;
}
public void setIsfinish(String isfinish) {
this.isfinish = isfinish;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?