private Integer lczt; /**
* Leaverecord构造函数 */
public Leaverecord() { super(); } /**
* Leaverecord完整的构造函数 */
public Leaverecord(String recordid){ this.recordid = recordid; } /**
* 属性 recordid 的get方法 * @return String */
public String getRecordid(){ return recordid; } /**
* 属性 recordid 的set方法 * @return */
public void setRecordid(String recordid){
if(recordid != null && recordid.trim().length() == 0){ this.recordid = null; }else{
this.recordid = recordid; } } /**
* 属性 applicant 的get方法 * @return String */
public String getApplicant(){
34
return applicant; } /**
* 属性 applicant 的set方法 * @return */
public void setApplicant(String applicant){ this.applicant = applicant; } /**
* 属性 leavetype 的get方法 * @return String */
public String getLeavetype(){ return leavetype; } /**
* 属性 leavetype 的set方法 * @return */
public void setLeavetype(String leavetype){ this.leavetype = leavetype; } /**
* 属性 reason 的get方法 * @return String */
public String getReason(){ return reason; } /**
* 属性 reason 的set方法 * @return */
public void setReason(String reason){ this.reason = reason;
35
} /**
* 属性 begintime 的get方法 * @return Date */
public Date getBegintime(){ return begintime; } /**
* 属性 begintime 的set方法 * @return */
public void setBegintime(Date begintime){ this.begintime = begintime; } /**
* 属性 endtime 的get方法 * @return Date */
public Date getEndtime(){ return endtime; } /**
* 属性 endtime 的set方法 * @return */
public void setEndtime(Date endtime){ this.endtime = endtime; } /**
* 属性 isapproved 的get方法 * @return Integer */
public String getIsapproved(){ return isapproved; }
36
/**
* 属性 isapproved 的set方法 * @return */
public void setIsapproved(String isapproved){ this.isapproved = isapproved; } /**
* 属性 annotation 的get方法 * @return String */
public String getAnnotation(){ return annotation; } /**
* 属性 annotation 的set方法 * @return */
public void setAnnotation(String annotation){ this.annotation = annotation; } /**
* 属性 approvedby 的get方法 * @return String */
public String getApprovedby(){ return approvedby; } /**
* 属性 approvedby 的set方法 * @return */
public void setApprovedby(String approvedby){ this.approvedby = approvedby; } /**
37
* 属性 insertperson 的get方法 * @return String */
public String getInsertperson(){ return insertperson; } /**
* 属性 insertperson 的set方法 * @return */
public void setInsertperson(String insertperson){ this.insertperson = insertperson; } /**
* 属性 ismanager 的get方法 * @return Integer */
public Integer getIsmanager(){ return ismanager; } /**
* 属性 ismanager 的set方法 * @return */
public void setIsmanager(Integer ismanager){ this.ismanager = ismanager; } /**
* Hibernate通过该方法判断对象是否相等 * @return boolean */
public boolean equals(Object o) { if (this == o)
return true;
if (o == null || !(o instanceof Leaverecord))
38