|
@@ -0,0 +1,111 @@
|
|
|
+package com.qmrb.system.controller;
|
|
|
+
|
|
|
+import java.util.Arrays;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+import org.springdoc.core.annotations.ParameterObject;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.CrossOrigin;
|
|
|
+import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.PutMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import io.swagger.v3.oas.annotations.Operation;
|
|
|
+import io.swagger.v3.oas.annotations.Parameter;
|
|
|
+import io.swagger.v3.oas.annotations.security.SecurityRequirement;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import com.qmrb.system.common.result.PageResult;
|
|
|
+import com.qmrb.system.common.result.Result;
|
|
|
+import com.qmrb.system.common.result.ResultCode;
|
|
|
+import com.qmrb.system.framework.resubmit.Resubmit;
|
|
|
+import com.qmrb.system.service.ICouponService;
|
|
|
+import com.qmrb.system.pojo.form.CouponForm;
|
|
|
+import com.qmrb.system.pojo.vo.CouponVO;
|
|
|
+import com.qmrb.system.pojo.query.CouponQuery;
|
|
|
+import com.qmrb.system.pojo.vo.Option;
|
|
|
+
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+import jakarta.validation.Valid;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 优惠券表 前端控制器
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author gs
|
|
|
+ * @since 2025-03-07
|
|
|
+ */
|
|
|
+@Tag(name = "优惠券表接口")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/api/v1/")
|
|
|
+@CrossOrigin
|
|
|
+public class CouponController{
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ICouponService couponService;
|
|
|
+
|
|
|
+ @Operation(summary = "优惠券表分页列表", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @GetMapping("/page")
|
|
|
+ public PageResult<CouponVO> getPage(
|
|
|
+ @ParameterObject CouponQuery queryParams
|
|
|
+ ) {
|
|
|
+ Page<CouponVO> result = couponService.getPage(queryParams);
|
|
|
+ return PageResult.success(result);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "新增优惠券表", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @PostMapping
|
|
|
+ @PreAuthorize("@ss.hasPerm(':add')")
|
|
|
+ @Resubmit
|
|
|
+ public Result<CouponForm> saveForm(
|
|
|
+ @RequestBody @Valid CouponForm form
|
|
|
+ ) {
|
|
|
+ CouponForm result = couponService.saveForm(form);
|
|
|
+ return Result.success(result);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "优惠券表表单数据", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @GetMapping("/{id}/form")
|
|
|
+ public Result<CouponForm> getForm(
|
|
|
+ @Parameter(description = "优惠券表ID") @PathVariable Long id
|
|
|
+ ) {
|
|
|
+ CouponForm formData = couponService.getFormData(id);
|
|
|
+ return Result.success(formData);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "修改优惠券表", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @PutMapping(value = "/{id}")
|
|
|
+ @PreAuthorize("@ss.hasPerm(':edit')")
|
|
|
+ public Result<?> updateForm(
|
|
|
+ @Parameter(description = "优惠券表ID") @PathVariable Long id,
|
|
|
+ @RequestBody @Validated CouponForm form) {
|
|
|
+
|
|
|
+ boolean result = couponService.updateForm(id,form);
|
|
|
+ return Result.judge(result);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "删除优惠券表", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @DeleteMapping("/{ids}")
|
|
|
+ @PreAuthorize("@ss.hasPerm(':delete')")
|
|
|
+ public Result<?> deleteUsers(
|
|
|
+ @Parameter(description = "优惠券表ID,多个以英文逗号(,)分割") @PathVariable String ids
|
|
|
+ ) {
|
|
|
+ if(StrUtil.isBlank(ids)) {
|
|
|
+ return Result.failed(ResultCode.PARAM_ERROR, "删除的优惠券表数据为空");
|
|
|
+ }
|
|
|
+ // 逻辑删除
|
|
|
+ List<Long> idList = Arrays.asList(ids.split(",")).stream()
|
|
|
+ .map(idStr -> Long.parseLong(idStr)).collect(Collectors.toList());
|
|
|
+ boolean result = couponService.removeByIds(idList);
|
|
|
+ return Result.judge(result);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|