feat(order): 添加订单状态字段并更新关联查询

- 在 ShopDealerOrder 实体中新增 orderStatus 字段用于显示订单状态
- 更新 ShopDealerOrderMapper.xml 中的关联查询,加入订单状态字段映射
- 修改 application.yml 配置文件,将默认激活环境从 dev 改为 glt2
- 通过 LEFT JOIN 关联 shop_order 表获取订单状态数据
This commit is contained in:
2026-02-28 20:17:01 +08:00
parent 1c78fdbef4
commit 2044bdc87a
3 changed files with 7 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ server:
# 多环境配置
spring:
profiles:
active: dev
active: glt2
application:
name: server