📄 applyitem.java
字号:
package cn.com.dreamtech.ehrd.etraining.domain;
import java.io.Serializable;import java.util.Date;import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class ApplyItem implements Serializable {
/** identifier field */
private String id;
/** nullable persistent field */
private String applyTitle;
/** nullable persistent field */
private String applyDesctiption;
/** nullable persistent field */
private String applyUserId;
/** nullable persistent field */
private Date applyTime;
/** nullable persistent field */
private Integer applyMoney;
/** nullable persistent field */
private String applyFlag;
/** full constructor */
public ApplyItem(String id, String applyTitle, String applyDesctiption, String applyUserId, Date applyTime, Integer applyMoney, String applyFlag) {
this.id = id;
this.applyTitle = applyTitle;
this.applyDesctiption = applyDesctiption;
this.applyUserId = applyUserId;
this.applyTime = applyTime;
this.applyMoney = applyMoney;
this.applyFlag = applyFlag;
}
/** default constructor */
public ApplyItem() {
}
/** minimal constructor */
public ApplyItem(String id) {
this.id = id;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getApplyTitle() {
return this.applyTitle;
}
public void setApplyTitle(String applyTitle) {
this.applyTitle = applyTitle;
}
public String getApplyDesctiption() {
return this.applyDesctiption;
}
public void setApplyDesctiption(String applyDesctiption) {
this.applyDesctiption = applyDesctiption;
}
public String getApplyUserId() {
return this.applyUserId;
}
public void setApplyUserId(String applyUserId) {
this.applyUserId = applyUserId;
}
public Date getApplyTime() {
return this.applyTime;
}
public void setApplyTime(Date applyTime) {
this.applyTime = applyTime;
}
public Integer getApplyMoney() {
return this.applyMoney;
}
public void setApplyMoney(Integer applyMoney) {
this.applyMoney = applyMoney;
}
public String getApplyFlag() {
return this.applyFlag;
}
public void setApplyFlag(String applyFlag) {
this.applyFlag = applyFlag;
}
public String toString() {
return new ToStringBuilder(this)
.append("id", getId())
.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -