|
@@ -2,6 +2,8 @@ package com.ym.mec.biz.dal.page;
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
import com.ym.mec.biz.dal.enums.JobTypeEnum;
|
|
|
import com.ym.mec.biz.dal.enums.StaffStatusEnum;
|
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
@@ -25,6 +27,10 @@ public class EmployeeInfoQueryInfo extends QueryInfo {
|
|
|
|
|
|
@ApiModelProperty(value = "状态", required = false)
|
|
|
private StaffStatusEnum status;
|
|
|
+
|
|
|
+ private Date startDate;
|
|
|
+
|
|
|
+ private Date endDate;
|
|
|
|
|
|
public String getUserNameOrIdOrMobile() {
|
|
|
return userNameOrIdOrMobile;
|
|
@@ -73,4 +79,20 @@ public class EmployeeInfoQueryInfo extends QueryInfo {
|
|
|
public void setSourceFrom(String sourceFrom) {
|
|
|
this.sourceFrom = sourceFrom;
|
|
|
}
|
|
|
+
|
|
|
+ public Date getStartDate() {
|
|
|
+ return startDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartDate(Date startDate) {
|
|
|
+ this.startDate = startDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getEndDate() {
|
|
|
+ return endDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndDate(Date endDate) {
|
|
|
+ this.endDate = endDate;
|
|
|
+ }
|
|
|
}
|