bugfix:修复拼团详情错误传递 groupon_id 的问题

This commit is contained in:
YunaiV 2024-03-30 15:28:46 +08:00
parent f591a04317
commit 5faa006dd0
2 changed files with 8 additions and 0 deletions

View File

@ -140,6 +140,9 @@ public class AppTradeOrderDetailRespVO {
@Schema(description = "VIP 减免金额", requiredMode = Schema.RequiredMode.REQUIRED, example = "888")
private Integer vipPrice;
@Schema(description = "拼团记录编号", example = "100")
private Long combinationRecordId;
/**
* 订单项数组
*/

View File

@ -50,4 +50,9 @@ public class AppTradeOrderPageItemRespVO {
*/
private List<AppTradeOrderItemRespVO> items;
// ========== 营销基本信息 ==========
@Schema(description = "拼团记录编号", example = "100")
private Long combinationRecordId;
}