187 lines
3.6 KiB
Java
187 lines
3.6 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmTransCnclOrderSingEmpHdrBean extends BaseHeaderBean implements Serializable {
|
|
String orderNo;
|
|
|
|
String orderDate;
|
|
|
|
String generatedBy;
|
|
|
|
String cancDefFlag;
|
|
|
|
String cancStatus;
|
|
|
|
String defDate;
|
|
|
|
String defPeriod;
|
|
|
|
String appNo;
|
|
|
|
String appDate;
|
|
|
|
private String appNoId;
|
|
|
|
String headerPrimaryKey1;
|
|
|
|
String employeeName;
|
|
|
|
String transOrderNo;
|
|
|
|
String transOrderDate;
|
|
|
|
String transEffectDate;
|
|
|
|
private String employeeId;
|
|
|
|
private String approverNoId;
|
|
|
|
private String approverName;
|
|
|
|
public String getOrderNo() {
|
|
return this.orderNo;
|
|
}
|
|
|
|
public void setOrderNo(String newOrderNo) {
|
|
this.orderNo = newOrderNo;
|
|
}
|
|
|
|
public String getOrderDate() {
|
|
return this.orderDate;
|
|
}
|
|
|
|
public void setOrderDate(String newOrderDate) {
|
|
this.orderDate = newOrderDate;
|
|
}
|
|
|
|
public String getGeneratedBy() {
|
|
return this.generatedBy;
|
|
}
|
|
|
|
public void setGeneratedBy(String newGeneratedBy) {
|
|
this.generatedBy = newGeneratedBy;
|
|
}
|
|
|
|
public String getCancDefFlag() {
|
|
return this.cancDefFlag;
|
|
}
|
|
|
|
public void setCancDefFlag(String newCancDefFlag) {
|
|
this.cancDefFlag = newCancDefFlag;
|
|
}
|
|
|
|
public String getCancStatus() {
|
|
return this.cancStatus;
|
|
}
|
|
|
|
public void setCancStatus(String newCancStatus) {
|
|
this.cancStatus = newCancStatus;
|
|
}
|
|
|
|
public String getDefDate() {
|
|
return this.defDate;
|
|
}
|
|
|
|
public void setDefDate(String newDefDate) {
|
|
this.defDate = newDefDate;
|
|
}
|
|
|
|
public String getDefPeriod() {
|
|
return this.defPeriod;
|
|
}
|
|
|
|
public void setDefPeriod(String newDefPeriod) {
|
|
this.defPeriod = newDefPeriod;
|
|
}
|
|
|
|
public String getAppNo() {
|
|
return this.appNo;
|
|
}
|
|
|
|
public void setAppNo(String newAppNo) {
|
|
this.appNo = newAppNo;
|
|
}
|
|
|
|
public String getAppDate() {
|
|
return this.appDate;
|
|
}
|
|
|
|
public void setAppDate(String newAppDate) {
|
|
this.appDate = newAppDate;
|
|
}
|
|
|
|
public String getAppNoId() {
|
|
return this.appNoId;
|
|
}
|
|
|
|
public void setAppNoId(String newAppNoId) {
|
|
this.appNoId = newAppNoId;
|
|
}
|
|
|
|
public String getHeaderPrimaryKey1() {
|
|
return this.headerPrimaryKey1;
|
|
}
|
|
|
|
public void setHeaderPrimaryKey1(String newHeaderPrimaryKey1) {
|
|
this.headerPrimaryKey1 = newHeaderPrimaryKey1;
|
|
}
|
|
|
|
public String getEmployeeName() {
|
|
return this.employeeName;
|
|
}
|
|
|
|
public void setEmployeeName(String newEmployeeName) {
|
|
this.employeeName = newEmployeeName;
|
|
}
|
|
|
|
public String getTransOrderNo() {
|
|
return this.transOrderNo;
|
|
}
|
|
|
|
public void setTransOrderNo(String newTransOrderNo) {
|
|
this.transOrderNo = newTransOrderNo;
|
|
}
|
|
|
|
public String getTransOrderDate() {
|
|
return this.transOrderDate;
|
|
}
|
|
|
|
public void setTransOrderDate(String newTransOrderDate) {
|
|
this.transOrderDate = newTransOrderDate;
|
|
}
|
|
|
|
public String getTransEffectDate() {
|
|
return this.transEffectDate;
|
|
}
|
|
|
|
public void setTransEffectDate(String newTransEffectDate) {
|
|
this.transEffectDate = newTransEffectDate;
|
|
}
|
|
|
|
public String getEmployeeId() {
|
|
return this.employeeId;
|
|
}
|
|
|
|
public void setEmployeeId(String newEmployeeId) {
|
|
this.employeeId = newEmployeeId;
|
|
}
|
|
|
|
public String getApproverNoId() {
|
|
return this.approverNoId;
|
|
}
|
|
|
|
public void setApproverNoId(String newApproverNoId) {
|
|
this.approverNoId = newApproverNoId;
|
|
}
|
|
|
|
public String getApproverName() {
|
|
return this.approverName;
|
|
}
|
|
|
|
public void setApproverName(String newApproverName) {
|
|
this.approverName = newApproverName;
|
|
}
|
|
}
|