From 5aad929b87cba3e2accfd3f243fa70af180937d2 Mon Sep 17 00:00:00 2001 From: phpcjl <phpcjl@gmail.com> Date: 星期二, 17 十二月 2024 09:10:28 +0800 Subject: [PATCH] 1 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/RedPackegeSetController.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/RedPackegeSetController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/RedPackegeSetController.java index 5b5b1f6..96bf652 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/RedPackegeSetController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/RedPackegeSetController.java @@ -4,6 +4,7 @@ import com.ruoyi.account.api.model.AppUser; import com.ruoyi.common.core.domain.R; import com.ruoyi.other.api.domain.RedPackegeSet; +import com.ruoyi.other.dto.RedPackegeSetDto; import com.ruoyi.other.service.RedPackegeSetService; import io.swagger.annotations.ApiOperation; import org.springframework.transaction.annotation.Transactional; @@ -58,8 +59,9 @@ @ApiOperation(value = "添加红包配置", tags = {"管理后台-活动管理-签到红包"}) @PostMapping("/addRedPackegeSet") @Transactional(rollbackFor = Exception.class) - public R<Void> addRedPackegeSet(@RequestBody List<RedPackegeSet> redPackegeSets){ - for (RedPackegeSet redPackegeSet : redPackegeSets) { + public R<Void> addRedPackegeSet(@RequestBody RedPackegeSetDto redPackegeSets){ + List<RedPackegeSet> redPackegeSetList = redPackegeSets.getRedPackegeSets(); + for (RedPackegeSet redPackegeSet : redPackegeSetList) { RedPackegeSet one = redPackegeSetService.getOne(null); if (one==null){ redPackegeSet.setId(1); -- Gitblit v1.7.1