feat:【framework 框架】优化 jackson 的初始化

This commit is contained in:
YunaiV
2025-08-24 16:03:39 +08:00
parent 005d64aae6
commit 441fe18720
3 changed files with 51 additions and 25 deletions

View File

@@ -166,7 +166,7 @@ public class CouponServiceImpl implements CouponService {
public void invalidateCouponsByAdmin(List<Long> giveCouponIds, Long userId) {
// 循环收回
for (Long couponId : giveCouponIds) {
// couponId为空或0则跳过
// couponId 为空或 0 则跳过
if (null == couponId || couponId <= 0) {
continue;
}