团购、限时秒杀BUG处理
This commit is contained in:
parent
73024993c8
commit
932f9aef00
|
@ -135,7 +135,7 @@ public class MassagePackageServiceImpl extends ServiceImpl<MassagePackageDao, Ma
|
|||
}
|
||||
}
|
||||
}
|
||||
entity.setBuyGroupNum(map.size());
|
||||
entity.setBuyGroupNum(userMap.size());
|
||||
map.put("groupData",entity);
|
||||
map.put("ordersData",groupNoList);
|
||||
return Result.success(map);
|
||||
|
|
|
@ -106,6 +106,9 @@
|
|||
<if test="null != ordersNo and '' != ordersNo">
|
||||
orders_no,
|
||||
</if>
|
||||
<if test="null != groupNo and '' != groupNo">
|
||||
group_no,
|
||||
</if>
|
||||
<if test="null != userId ">
|
||||
user_id,
|
||||
</if>
|
||||
|
@ -150,6 +153,9 @@
|
|||
<if test="null != ordersNo and '' != ordersNo">
|
||||
#{ordersNo},
|
||||
</if>
|
||||
<if test="null != groupNo and '' != groupNo">
|
||||
#{groupNo},
|
||||
</if>
|
||||
<if test="null != userId ">
|
||||
#{userId},
|
||||
</if>
|
||||
|
|
Loading…
Reference in New Issue