diff --git a/school_lend_back_end/pom.xml b/school_lend_back_end/pom.xml
index 8fe37bd..41a0515 100644
--- a/school_lend_back_end/pom.xml
+++ b/school_lend_back_end/pom.xml
@@ -106,7 +106,11 @@
lombok
1.18.30
-
+
+ com.alibaba
+ easyexcel
+ 3.3.3
+
org.springframework.boot
@@ -130,14 +134,6 @@
org.springframework.boot
spring-boot-maven-plugin
2.6.4
-
-
-
- org.projectlombok
- lombok
-
-
-
org.apache.maven.plugins
diff --git a/school_lend_back_end/sql/create_table.sql b/school_lend_back_end/sql/create_table.sql
index 7daa3f6..fc90e12 100644
--- a/school_lend_back_end/sql/create_table.sql
+++ b/school_lend_back_end/sql/create_table.sql
@@ -239,9 +239,20 @@ create table if not exists systemInfo
-- 聊天记录表
create table private_message
(
- id bigint auto_increment primary key,
- from_userAccount varchar(255) not null comment '发消息者',
- to_userAccount varchar(255) not null comment '接收消息者',
- orderId BIGINT null comment '订单id',
- message varchar(255) null comment '消息内容'
-)comment '聊天记录' collate = utf8mb4_unicode_ci;
\ No newline at end of file
+ id bigint auto_increment comment 'id' primary key,
+ from_userAccount varchar(255) not null comment '发消息者',
+ to_userAccount varchar(255) not null comment '接收消息者',
+ orderId bigint null comment '订单id',
+ message varchar(255) null comment '消息内容',
+ from_user_deleted tinyint default false comment '发消息者是否删除',
+ to_user_deleted tinyint default false comment '接收消息者是否删除'
+)
+ comment '聊天记录' collate = utf8mb4_unicode_ci;
+
+# 收藏表
+create table collect
+(
+ id bigint auto_increment comment 'id' primary key ,
+ userId bigint not null comment '用户id',
+ businessId bigint not null comment '商家id'
+)
\ No newline at end of file
diff --git a/school_lend_back_end/src/main/java/com/bsz/school_send_back_end/config/RedisSessionRepositoryConfig.java b/school_lend_back_end/src/main/java/com/bsz/school_send_back_end/config/RedisSessionRepositoryConfig.java
new file mode 100644
index 0000000..242462e
--- /dev/null
+++ b/school_lend_back_end/src/main/java/com/bsz/school_send_back_end/config/RedisSessionRepositoryConfig.java
@@ -0,0 +1,16 @@
+package com.bsz.school_send_back_end.config;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
+import org.springframework.data.redis.serializer.RedisSerializer;
+
+@Configuration
+public class RedisSessionRepositoryConfig {
+
+ @Bean("springSessionRedisSerializer")
+ public RedisSerializer