From 5a2873960e3db2d500cfc549ff568dc4bf0aa881 Mon Sep 17 00:00:00 2001 From: phpcjl <phpcjl@gmail.com> Date: 星期二, 17 十二月 2024 09:14:51 +0800 Subject: [PATCH] 1 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/RedPackegeSetController.java | 33 ++++++++++++++++++--------------- 1 files changed, 18 insertions(+), 15 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 dfef420..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,17 +4,16 @@ 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.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; - -import org.springframework.web.bind.annotation.ResponseBody; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import java.math.BigDecimal; import java.time.LocalDateTime; +import java.util.List; /** * <p> @@ -58,17 +57,21 @@ * 添加红包配置 */ @ApiOperation(value = "添加红包配置", tags = {"管理后台-活动管理-签到红包"}) - @GetMapping("/addRedPackegeSet") - public R<Void> addRedPackegeSet(RedPackegeSet redPackegeSet){ - RedPackegeSet one = redPackegeSetService.getOne(null); - if (one==null){ - redPackegeSet.setId(1); - redPackegeSetService.save(redPackegeSet); - }else { - if (one.getId()==null){ - return R.fail("参数错误"); + @PostMapping("/addRedPackegeSet") + @Transactional(rollbackFor = Exception.class) + 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); + redPackegeSetService.save(redPackegeSet); + }else { + if (one.getId()==null){ + return R.fail("参数错误"); + } + redPackegeSetService.updateById(redPackegeSet); } - redPackegeSetService.updateById(redPackegeSet); } return R.ok(); } -- Gitblit v1.7.1