在项目中连入easyExcel的依赖

初步写出esayExcel的demo
测试了统计数目订单的接口
编写实现两人实时聊天的demo项目
初步写出在一段时间内订单的数目统计的demo
完成了订单数目统计的接口·优化文件上传接口
优化管理端登录接口
优化了创建交易订单的接口
修复了在同域下Session接收不到的问题
This commit is contained in:
tsukiyalo 2024-11-06 18:28:02 +08:00
parent d484aa599b
commit 53eb6b013e
3 changed files with 1 additions and 14 deletions

View File

@ -105,16 +105,6 @@
<artifactId>lombok</artifactId>
<version>1.18.30</version>
</dependency>
<!-- redis -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-data-redis</artifactId>
</dependency>
</dependencies>
<build>

View File

@ -96,6 +96,7 @@ public class AlipayController {
if (response1.isSuccess()) {
if (oid == null) {
User user = new User();
user.setOpenId(response.getOpenId());
user.setUsername(StringUtils.isAnyBlank(response1.getNickName()) ? "随机名字" + randomNumberGenerator.generateRandomNumber() : response1.getNickName());
user.setUserPassword("123456");

View File

@ -29,10 +29,6 @@ server:
port: 9999
servlet:
context-path: /api
session:
cookie.sameSite: None
cookie.secure: true
cookie.httpOnly: true
mybatis-plus:
configuration:
map-underscore-to-camel-case: false