feat(oa): 根据订单号查询退换货信息

- 在 GearReturnExchangeBo 中添加 orderId 字段
- 在 GearReturnExchangeMapper 中添加 selectVoPagePlus 方法
- 在 GearReturnExchangeServiceImpl 中实现根据订单号查询退换货信息的逻辑
- 在 GearReturnExchangeVo 中添加与退换货相关的额外字段
This commit is contained in:
2025-09-03 10:57:41 +08:00
parent 0425cd7be8
commit 04a68e86c0
5 changed files with 154 additions and 6 deletions

View File

@@ -58,5 +58,8 @@ public class GearReturnExchangeBo extends BaseEntity {
*/
private BigDecimal amount;
//订单id
private Long orderId;
}