diff --git a/ruoyi-admin/src/main/resources/templates/system/incoming/incoming.html b/ruoyi-admin/src/main/resources/templates/system/incoming/incoming.html
index 4bb35b8..16774c2 100644
--- a/ruoyi-admin/src/main/resources/templates/system/incoming/incoming.html
+++ b/ruoyi-admin/src/main/resources/templates/system/incoming/incoming.html
@@ -16,6 +16,12 @@
号码区号:
+
+
+
+ -
+
+
搜索
重置
diff --git a/ruoyi-admin/src/main/resources/templates/system/outbound/outbound.html b/ruoyi-admin/src/main/resources/templates/system/outbound/outbound.html
index fd41cac..d987d42 100644
--- a/ruoyi-admin/src/main/resources/templates/system/outbound/outbound.html
+++ b/ruoyi-admin/src/main/resources/templates/system/outbound/outbound.html
@@ -16,6 +16,12 @@
号码区号:
+
+
+
+ -
+
+
搜索
重置
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/FsChannelRecord.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/FsChannelRecord.java
index 1c15953..3b9cbef 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/FsChannelRecord.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/FsChannelRecord.java
@@ -6,6 +6,9 @@ import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
+import java.util.Map;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
@@ -221,4 +224,9 @@ public class FsChannelRecord implements Serializable {
@TableField(exist = false)
private static final long serialVersionUID = 1L;
+
+ /** 请求参数 */
+ @JsonInclude(JsonInclude.Include.NON_EMPTY)
+ @TableField(exist=false)
+ private Map params;
}
\ No newline at end of file
diff --git a/ruoyi-system/src/main/resources/mapper/system/FsChannelRecordMapper.xml b/ruoyi-system/src/main/resources/mapper/system/FsChannelRecordMapper.xml
index 7ca5099..4b04856 100644
--- a/ruoyi-system/src/main/resources/mapper/system/FsChannelRecordMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/FsChannelRecordMapper.xml
@@ -120,6 +120,12 @@
AND a.areacode = #{areacode}
+
+ and date_format(a.start,'%y%m%d') >= date_format(#{params.beginTime},'%y%m%d')
+
+
+ and date_format(a.start,'%y%m%d') <= date_format(#{params.endTime},'%y%m%d')
+
order by end desc