first commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class HrmATDTransChrgRptQVO extends BaseQueryVO implements Serializable {
|
||||
String trnOrderNo;
|
||||
|
||||
private String chargeType;
|
||||
|
||||
String empNameId;
|
||||
|
||||
public String getTrnOrderNo() {
|
||||
return this.trnOrderNo;
|
||||
}
|
||||
|
||||
public void setTrnOrderNo(String newTrnOrderNo) {
|
||||
this.trnOrderNo = newTrnOrderNo;
|
||||
}
|
||||
|
||||
public String getChargeType() {
|
||||
return this.chargeType;
|
||||
}
|
||||
|
||||
public void setChargeType(String newChargeType) {
|
||||
this.chargeType = newChargeType;
|
||||
}
|
||||
|
||||
public String getEmpNameId() {
|
||||
return this.empNameId;
|
||||
}
|
||||
|
||||
public void setEmpNameId(String newEmpNameId) {
|
||||
this.empNameId = newEmpNameId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user