refactor(Admin): 更新微信小程序密钥并优化代码

- 更新微信小程序 secret 为实际值- 移除 BaseEntity 中未使用的 Date 导入
- 优化 OrderServiceImpl 中的 productMapper 注入方式
This commit is contained in:
huk 2025-09-03 10:57:50 +08:00
parent 4ff73cb5ec
commit 80b80b9578
3 changed files with 2 additions and 3 deletions

View File

@ -380,7 +380,7 @@ wechat:
secret: your_wechat_secret # 应用密钥 secret: your_wechat_secret # 应用密钥
mini-program: mini-program:
app-id: wx87a5db19138da60d app-id: wx87a5db19138da60d
secret: your_wechat_secret secret: 856ca8bae38ccaecc1353c9abedf6b41
http: http:
client: client:

View File

@ -9,7 +9,6 @@ import lombok.Data;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.time.LocalDateTime; import java.time.LocalDateTime;
import java.util.Date;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;

View File

@ -83,7 +83,7 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
*/ */
private final static String ORDER_SN_PREFIX = "WZJ"; private final static String ORDER_SN_PREFIX = "WZJ";
private ProductMapper productMapper; private final ProductMapper productMapper;
/** /**