diff --git a/hiver-modules/hiver-file/src/main/java/cc/hiver/file/controller/UploadController.java b/hiver-modules/hiver-file/src/main/java/cc/hiver/file/controller/UploadController.java
index bbf99430..cc484ca4 100644
--- a/hiver-modules/hiver-file/src/main/java/cc/hiver/file/controller/UploadController.java
+++ b/hiver-modules/hiver-file/src/main/java/cc/hiver/file/controller/UploadController.java
@@ -43,7 +43,7 @@ import java.io.InputStream;
@RequestMapping("/hiver/upload")
@Transactional
public class UploadController {
- @Value("15")
+ @Value("${hiver.maxUploadFile:50}")
private Long maxUploadFile;
@Autowired
diff --git a/hiver-modules/hiver-mall/pom.xml b/hiver-modules/hiver-mall/pom.xml
index 6e1aead1..73d8c18b 100644
--- a/hiver-modules/hiver-mall/pom.xml
+++ b/hiver-modules/hiver-mall/pom.xml
@@ -44,6 +44,12 @@
sensitive-word
0.26.0
+
+
+ com.aliyun
+ green20220302
+ 3.3.3
+
\ No newline at end of file
diff --git a/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/ie/constant/IeConstants.java b/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/ie/constant/IeConstants.java
index 337b0b3e..a1b189af 100644
--- a/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/ie/constant/IeConstants.java
+++ b/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/ie/constant/IeConstants.java
@@ -3,7 +3,7 @@ package cc.hiver.mall.ie.constant;
public final class IeConstants {
public static final int DEFAULT_ROOM_MINUTES = 15;
- public static final int DEFAULT_DAILY_QUOTA = 3;
+ public static final int DEFAULT_DAILY_QUOTA = 20;
public static final int ROOM_STATUS_ACTIVE = 0;
public static final int ROOM_STATUS_NATURAL_END = 1;
diff --git a/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/ie/controller/IeAdminController.java b/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/ie/controller/IeAdminController.java
index 381e6890..a82311f3 100644
--- a/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/ie/controller/IeAdminController.java
+++ b/hiver-modules/hiver-mall/src/main/java/cc/hiver/mall/ie/controller/IeAdminController.java
@@ -1,27 +1,61 @@
package cc.hiver.mall.ie.controller;
import cc.hiver.core.common.utils.ResultUtil;
+import cc.hiver.core.common.utils.SecurityUtil;
import cc.hiver.core.common.vo.Result;
+import cc.hiver.core.entity.User;
+import cc.hiver.mall.ie.entity.IeReport;
import cc.hiver.mall.ie.service.IeChatService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
@Api(tags = "i/e后台维护接口")
-@RequestMapping("/hiver/admin/ie")
+@RequestMapping({"/hiver/admin/ie", "/hiver/app/ie/admin"})
public class IeAdminController {
@Autowired
private IeChatService chatService;
+ @Autowired
+ private SecurityUtil securityUtil;
+
@RequestMapping(value = "/rooms/finishExpired", method = RequestMethod.POST)
@ApiOperation("批量结束已过期陪伴房间")
public Result