diff --git a/null/download/0952cc1651f0458fab7c1b52eed45d1b_订单售后数据.xlsx b/null/download/0952cc1651f0458fab7c1b52eed45d1b_订单售后数据.xlsx
new file mode 100644
index 000000000..661a91ed5
Binary files /dev/null and b/null/download/0952cc1651f0458fab7c1b52eed45d1b_订单售后数据.xlsx differ
diff --git a/null/download/62f9b95dc78e4096b1284da19117d9e5_订单售后数据.xlsx b/null/download/62f9b95dc78e4096b1284da19117d9e5_订单售后数据.xlsx
new file mode 100644
index 000000000..6d5fd1ec1
Binary files /dev/null and b/null/download/62f9b95dc78e4096b1284da19117d9e5_订单售后数据.xlsx differ
diff --git a/null/download/7899d2d8a00f4f899a882eaaa8f4b8a2_订单售后数据.xlsx b/null/download/7899d2d8a00f4f899a882eaaa8f4b8a2_订单售后数据.xlsx
new file mode 100644
index 000000000..deebb7b94
Binary files /dev/null and b/null/download/7899d2d8a00f4f899a882eaaa8f4b8a2_订单售后数据.xlsx differ
diff --git a/null/download/ee3cbbae3c454908810316c4dc7da48e_订单售后数据.xlsx b/null/download/ee3cbbae3c454908810316c4dc7da48e_订单售后数据.xlsx
new file mode 100644
index 000000000..d45b8cc41
Binary files /dev/null and b/null/download/ee3cbbae3c454908810316c4dc7da48e_订单售后数据.xlsx differ
diff --git a/qrcode/12342424.png b/qrcode/12342424.png
new file mode 100644
index 000000000..0e50db7d2
Binary files /dev/null and b/qrcode/12342424.png differ
diff --git a/ruoyi-admin/src/main/java/org/dromara/web/controller/IndexController.java b/ruoyi-admin/src/main/java/org/dromara/web/controller/IndexController.java
index 0c3bdecc8..5297e0753 100644
--- a/ruoyi-admin/src/main/java/org/dromara/web/controller/IndexController.java
+++ b/ruoyi-admin/src/main/java/org/dromara/web/controller/IndexController.java
@@ -1,12 +1,17 @@
package org.dromara.web.controller;
import cn.dev33.satoken.annotation.SaIgnore;
+import com.wzj.soopin.order.service.OrderService;
import lombok.RequiredArgsConstructor;
+import org.dromara.common.core.domain.R;
import org.dromara.common.core.utils.SpringUtils;
import org.dromara.common.core.utils.StringUtils;
+import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
+import java.util.Map;
+
/**
* 首页
*
@@ -17,6 +22,9 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
public class IndexController {
+ @Autowired
+ private OrderService orderService;
+
/**
* 访问首页,提示语
*/
@@ -29,8 +37,11 @@ public class IndexController {
/**
* 获取数量统计
*/
-// public List< String>
+ @GetMapping("/count")
+ public R getCount() {
+ return R.ok(orderService.getCount());
+ }
/**
* 获取今日待办任务
diff --git a/ruoyi-common/ruoyi-common-core/pom.xml b/ruoyi-common/ruoyi-common-core/pom.xml
index 5a9dd1b31..9f74e347f 100644
--- a/ruoyi-common/ruoyi-common-core/pom.xml
+++ b/ruoyi-common/ruoyi-common-core/pom.xml
@@ -98,6 +98,14 @@
org.lionsoul
ip2region
+
+ org.springframework.security
+ spring-security-crypto
+
+
+ org.springframework.security
+ spring-security-core
+
diff --git a/ruoyi-modules/ruoyi-order/src/main/java/com/wzj/soopin/order/utils/SecurityUtils.java b/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/utils/SecurityUtils.java
similarity index 98%
rename from ruoyi-modules/ruoyi-order/src/main/java/com/wzj/soopin/order/utils/SecurityUtils.java
rename to ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/utils/SecurityUtils.java
index 291e18a46..3ace4b297 100644
--- a/ruoyi-modules/ruoyi-order/src/main/java/com/wzj/soopin/order/utils/SecurityUtils.java
+++ b/ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/utils/SecurityUtils.java
@@ -1,9 +1,10 @@
-package com.wzj.soopin.order.utils;
+package org.dromara.common.core.utils;
+
+import org.springframework.security.core.Authentication;
import org.dromara.common.core.constant.HttpStatus;
import org.dromara.common.core.domain.model.LoginUser;
import org.dromara.common.core.exception.ServiceException;
-import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
diff --git a/ruoyi-common/ruoyi-common-security/pom.xml b/ruoyi-common/ruoyi-common-security/pom.xml
index 5b39df293..9d860f0bd 100644
--- a/ruoyi-common/ruoyi-common-security/pom.xml
+++ b/ruoyi-common/ruoyi-common-security/pom.xml
@@ -20,6 +20,14 @@
org.dromara
ruoyi-common-satoken
+
+ org.springframework.security
+ spring-security-crypto
+
+
+ org.springframework.security
+ spring-security-core
+
diff --git a/ruoyi-modules/ruoyi-content/src/main/java/com/wzj/soopin/content/mapper/VlogMapper.java b/ruoyi-modules/ruoyi-content/src/main/java/com/wzj/soopin/content/mapper/VlogMapper.java
index 8289883a9..56b3a5d08 100644
--- a/ruoyi-modules/ruoyi-content/src/main/java/com/wzj/soopin/content/mapper/VlogMapper.java
+++ b/ruoyi-modules/ruoyi-content/src/main/java/com/wzj/soopin/content/mapper/VlogMapper.java
@@ -10,6 +10,7 @@ import com.wzj.soopin.content.domain.vo.CommentVO;
import com.wzj.soopin.content.domain.vo.IndexVlogVO;
import org.apache.ibatis.annotations.Param;
+import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
import java.util.List;
@@ -94,4 +95,7 @@ public interface VlogMapper extends BaseMapper {
* @return 分页结果,包含视频信息及统计数据
*/
IPage