|
@@ -0,0 +1,116 @@
|
|
|
+package com.qmrb.system.controller;
|
|
|
+
|
|
|
+import java.util.Arrays;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+import com.qmrb.system.common.exception.BusinessException;
|
|
|
+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.ICarParkStoredCardService;
|
|
|
+import com.qmrb.system.pojo.form.CarParkStoredCardForm;
|
|
|
+import com.qmrb.system.pojo.vo.CarParkStoredCardVO;
|
|
|
+import com.qmrb.system.pojo.query.CarParkStoredCardQuery;
|
|
|
+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-02-24
|
|
|
+ */
|
|
|
+@Tag(name = "停车储值卡接口")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/api/v1/park_stored_card")
|
|
|
+@CrossOrigin
|
|
|
+public class CarParkStoredCardController{
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ICarParkStoredCardService carParkStoredCardService;
|
|
|
+
|
|
|
+ @Operation(summary = "停车储值卡分页列表", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @GetMapping("/page")
|
|
|
+ public PageResult<CarParkStoredCardVO> getPage(
|
|
|
+ @ParameterObject CarParkStoredCardQuery queryParams
|
|
|
+ ) {
|
|
|
+ if(queryParams.getUserId() == null){
|
|
|
+ throw new BusinessException("用户id不能为空");
|
|
|
+ }
|
|
|
+ Page<CarParkStoredCardVO> result = carParkStoredCardService.getPage(queryParams);
|
|
|
+ return PageResult.success(result);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "新增停车储值卡", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @PostMapping
|
|
|
+ @PreAuthorize("@ss.hasPerm('park_stored_card:add')")
|
|
|
+ @Resubmit
|
|
|
+ public Result<CarParkStoredCardForm> saveForm(
|
|
|
+ @RequestBody @Valid CarParkStoredCardForm form
|
|
|
+ ) {
|
|
|
+ CarParkStoredCardForm result = carParkStoredCardService.saveForm(form);
|
|
|
+ return Result.success(result);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "停车储值卡表单数据", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @GetMapping("/{id}/form")
|
|
|
+ public Result<CarParkStoredCardForm> getForm(
|
|
|
+ @Parameter(description = "停车储值卡ID") @PathVariable Long id
|
|
|
+ ) {
|
|
|
+ CarParkStoredCardForm formData = carParkStoredCardService.getFormData(id);
|
|
|
+ return Result.success(formData);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "修改停车储值卡", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @PutMapping(value = "/{id}")
|
|
|
+ @PreAuthorize("@ss.hasPerm('park_stored_card:edit')")
|
|
|
+ public Result<?> updateForm(
|
|
|
+ @Parameter(description = "停车储值卡ID") @PathVariable Long id,
|
|
|
+ @RequestBody @Validated CarParkStoredCardForm form) {
|
|
|
+
|
|
|
+ boolean result = carParkStoredCardService.updateForm(id,form);
|
|
|
+ return Result.judge(result);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Operation(summary = "删除停车储值卡", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @DeleteMapping("/{ids}")
|
|
|
+ @PreAuthorize("@ss.hasPerm('park_stored_card: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 = carParkStoredCardService.removeByIds(idList);
|
|
|
+ return Result.judge(result);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|