mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 07:11:52 +08:00
【功能修复】商城:虚拟成团时,headId 未使用团长编号
This commit is contained in:
parent
a9928fa227
commit
7849666529
@ -217,7 +217,8 @@ public interface CombinationActivityConvert {
|
||||
List<CombinationRecordDO> createRecords = new ArrayList<>(count);
|
||||
for (int i = 0; i < count; i++) {
|
||||
// 基础信息和团长保持一致
|
||||
CombinationRecordDO newRecord = convert5(headRecord);
|
||||
CombinationRecordDO newRecord = BeanUtils.toBean(headRecord, CombinationRecordDO.class)
|
||||
.setId(null).setHeadId(headRecord.getHeadId());
|
||||
// 虚拟信息
|
||||
newRecord.setCount(0) // 会单独更新下,在后续的 Service 逻辑里
|
||||
.setUserId(0L).setNickname("").setAvatar("").setOrderId(0L);
|
||||
@ -225,7 +226,5 @@ public interface CombinationActivityConvert {
|
||||
}
|
||||
return createRecords;
|
||||
}
|
||||
@Mapping(target = "id", ignore = true)
|
||||
CombinationRecordDO convert5(CombinationRecordDO headRecord);
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user