Commit 66e44ef2 by 王祖波

Merge branch 'feature-content202505' into developer

parents b2724f97 caf28e88
......@@ -2,6 +2,8 @@ package com.gic.haoban.manage.api.dto.qdto.content;
import com.gic.api.base.commons.BasePageInfo;
import java.util.Date;
/**
* @Author MUSI
* @Date 2023/3/29 1:11 PM
......@@ -47,6 +49,16 @@ public class InteractRecordQDTO extends BasePageInfo {
*/
private Integer filterNull;
/**
* 开始时间-创建时间
*/
private Date startTime;
/**
* 结束时间-创建时间
*/
private Date endTime;
public String getClerkId() {
return clerkId;
......@@ -103,4 +115,20 @@ public class InteractRecordQDTO extends BasePageInfo {
public void setFilterNull(Integer 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