Commit caf28e88 by 王祖波

入参增加时间

parent 6a8c3d46
...@@ -2,6 +2,8 @@ package com.gic.haoban.manage.api.dto.qdto.content; ...@@ -2,6 +2,8 @@ package com.gic.haoban.manage.api.dto.qdto.content;
import com.gic.api.base.commons.BasePageInfo; import com.gic.api.base.commons.BasePageInfo;
import java.util.Date;
/** /**
* @Author MUSI * @Author MUSI
* @Date 2023/3/29 1:11 PM * @Date 2023/3/29 1:11 PM
...@@ -47,6 +49,16 @@ public class InteractRecordQDTO extends BasePageInfo { ...@@ -47,6 +49,16 @@ public class InteractRecordQDTO extends BasePageInfo {
*/ */
private Integer filterNull; private Integer filterNull;
/**
* 开始时间-创建时间
*/
private Date startTime;
/**
* 结束时间-创建时间
*/
private Date endTime;
public String getClerkId() { public String getClerkId() {
return clerkId; return clerkId;
...@@ -103,4 +115,20 @@ public class InteractRecordQDTO extends BasePageInfo { ...@@ -103,4 +115,20 @@ public class InteractRecordQDTO extends BasePageInfo {
public void setFilterNull(Integer filterNull) { public void setFilterNull(Integer filterNull) {
this.filterNull = filterNull; this.filterNull = filterNull;
} }
public Date getStartTime() {
return startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
public Date getEndTime() {
return endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment