guoshuai 3 semanas atrás
pai
commit
47ca16d260

+ 111 - 0
src/main/java/com/qmrb/system/controller/CouponController.java

@@ -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);
+    }
+
+}

+ 29 - 0
src/main/java/com/qmrb/system/converter/CouponConverter.java

@@ -0,0 +1,29 @@
+package com.qmrb.system.converter;
+
+import org.mapstruct.InheritInverseConfiguration;
+import org.mapstruct.Mapper;
+import org.mapstruct.ReportingPolicy;
+
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.qmrb.system.pojo.entity.Coupon;
+import com.qmrb.system.pojo.form.CouponForm;
+import com.qmrb.system.pojo.vo.CouponVO;
+
+/**
+ * 优惠券表数据项对象转换器
+ *
+ * @author gs
+ * @since 2025-03-07
+ */
+@Mapper(componentModel = "spring",unmappedTargetPolicy = ReportingPolicy.IGNORE)
+public interface CouponConverter {
+
+    Page<CouponVO> entity2Page(Page<Coupon> page);
+
+    CouponForm entity2Form(Coupon entity);
+
+    @InheritInverseConfiguration(name="entity2Form")
+    Coupon form2Entity(CouponForm form);
+    
+    CouponVO entity2Vo(Coupon entity);
+}

+ 18 - 0
src/main/java/com/qmrb/system/mapper/CouponMapper.java

@@ -0,0 +1,18 @@
+package com.qmrb.system.mapper;
+
+import com.qmrb.system.pojo.entity.Coupon;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ * <p>
+ * 优惠券表 Mapper 接口
+ * </p>
+ *
+ * @author gs
+ * @since 2025-03-07
+ */
+@Mapper
+public interface CouponMapper extends BaseMapper<Coupon> {
+
+}

+ 106 - 0
src/main/java/com/qmrb/system/pojo/entity/Coupon.java

@@ -0,0 +1,106 @@
+package com.qmrb.system.pojo.entity;
+
+import java.math.BigDecimal;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.qmrb.system.common.base.BaseEntity;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableField;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * <p>
+ * 优惠券表
+ * </p>
+ *
+ * @author gs
+ * @since 2025-03-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@TableName("coupon")
+public class Coupon extends BaseEntity {
+
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 优惠券ID(主键)
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 受赠用户ID
+     */
+    @TableField("to_user_id")
+    private Long toUserId;
+
+    /**
+     * 发放者ID
+     */
+    @TableField("from_user_id")
+    private Long fromUserId;
+
+    /**
+     * 停车记录ID
+     */
+    @TableField("goods_id")
+    private Long goodsId;
+
+    /**
+     * 使用场景(1-停车场, 2-其他场景)
+     */
+    @TableField("scenes")
+    private Integer scenes;
+
+    /**
+     * 优惠券面额(单位:元或时长,根据coupon_type决定)
+     */
+    @TableField("denomination")
+    private BigDecimal denomination;
+
+    /**
+     * 使用门槛价(单位:元)
+     */
+    @TableField("threshold_price")
+    private BigDecimal thresholdPrice;
+
+    /**
+     * 生效时间(时间戳,单位:毫秒)
+     */
+    @TableField("effective_time")
+    private Long effectiveTime;
+
+    /**
+     * 失效时间(时间戳,单位:毫秒)
+     */
+    @TableField("expire_time")
+    private Long expireTime;
+
+    /**
+     * 状态(0-已使用, 1-未使用, 2-锁定)
+     */
+    @TableField("status")
+    private Integer status;
+
+    /**
+     * 使用时间(时间戳,单位:毫秒,未使用时为0)
+     */
+    @TableField("use_time")
+    private Long useTime;
+
+    /**
+     * 已使用金额(单位:元)
+     */
+    @TableField("amount_used")
+    private BigDecimal amountUsed;
+
+    /**
+     * 优惠券类型(1-金额券, 2-时长券)
+     */
+    @TableField("coupon_type")
+    private Integer couponType;
+
+
+}

+ 86 - 0
src/main/java/com/qmrb/system/pojo/form/CouponForm.java

@@ -0,0 +1,86 @@
+package com.qmrb.system.pojo.form;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+import java.math.BigDecimal;
+
+/**
+ * <p>
+ * 优惠券表表单
+ * </p>
+ *
+ * @author gs
+ * @since 2025-03-07
+ */
+@Data
+public class CouponForm {
+
+    /**
+     * 优惠券ID(主键)
+     */
+	@Schema(description = "优惠券ID(主键)",type="Long")
+    private Long id;
+    /**
+     * 受赠用户ID
+     */
+	@Schema(description = "受赠用户ID",type="Long")
+    private Long toUserId;
+    /**
+     * 发放者ID
+     */
+	@Schema(description = "发放者ID",type="Long")
+    private Long fromUserId;
+    /**
+     * 停车记录ID
+     */
+	@Schema(description = "停车记录ID",type="Long")
+    private Long goodsId;
+    /**
+     * 使用场景(1-停车场, 2-其他场景)
+     */
+	@Schema(description = "使用场景(1-停车场, 2-其他场景)",type="Integer")
+    private Integer scenes;
+    /**
+     * 优惠券面额(单位:元或时长,根据coupon_type决定)
+     */
+	@Schema(description = "优惠券面额(单位:元或时长,根据coupon_type决定)",type="BigDecimal")
+    private BigDecimal denomination;
+    /**
+     * 使用门槛价(单位:元)
+     */
+	@Schema(description = "使用门槛价(单位:元)",type="BigDecimal")
+    private BigDecimal thresholdPrice;
+    /**
+     * 生效时间(时间戳,单位:毫秒)
+     */
+	@Schema(description = "生效时间(时间戳,单位:毫秒)",type="Long")
+    private Long effectiveTime;
+    /**
+     * 失效时间(时间戳,单位:毫秒)
+     */
+	@Schema(description = "失效时间(时间戳,单位:毫秒)",type="Long")
+    private Long expireTime;
+    /**
+     * 状态(0-已使用, 1-未使用, 2-锁定)
+     */
+	@Schema(description = "状态(0-已使用, 1-未使用, 2-锁定)",type="Integer")
+    private Integer status;
+    /**
+     * 使用时间(时间戳,单位:毫秒,未使用时为0)
+     */
+	@Schema(description = "使用时间(时间戳,单位:毫秒,未使用时为0)",type="Long")
+    private Long useTime;
+    /**
+     * 已使用金额(单位:元)
+     */
+	@Schema(description = "已使用金额(单位:元)",type="BigDecimal")
+    private BigDecimal amountUsed;
+    /**
+     * 优惠券类型(1-金额券, 2-时长券)
+     */
+	@Schema(description = "优惠券类型(1-金额券, 2-时长券)",type="Integer")
+    private Integer couponType;
+
+
+}

+ 92 - 0
src/main/java/com/qmrb/system/pojo/query/CouponQuery.java

@@ -0,0 +1,92 @@
+package com.qmrb.system.pojo.query;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import com.qmrb.system.common.base.BasePageQuery;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+import java.math.BigDecimal;
+
+/**
+ * <p>
+ * 优惠券表查询对象
+ * </p>
+ *
+ * @author gs
+ * @since 2025-03-07
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+public class CouponQuery extends BasePageQuery{
+
+ 	@Schema(description="关键字")
+    private String keywords;
+
+    /**
+     * 优惠券ID(主键)
+     */
+	@Schema(description = "优惠券ID(主键)",type="Long")
+    private Long id;
+    /**
+     * 受赠用户ID
+     */
+	@Schema(description = "受赠用户ID",type="Long")
+    private Long toUserId;
+    /**
+     * 发放者ID
+     */
+	@Schema(description = "发放者ID",type="Long")
+    private Long fromUserId;
+    /**
+     * 停车记录ID
+     */
+	@Schema(description = "停车记录ID",type="Long")
+    private Long goodsId;
+    /**
+     * 使用场景(1-停车场, 2-其他场景)
+     */
+	@Schema(description = "使用场景(1-停车场, 2-其他场景)",type="Integer")
+    private Integer scenes;
+    /**
+     * 优惠券面额(单位:元或时长,根据coupon_type决定)
+     */
+	@Schema(description = "优惠券面额(单位:元或时长,根据coupon_type决定)",type="BigDecimal")
+    private BigDecimal denomination;
+    /**
+     * 使用门槛价(单位:元)
+     */
+	@Schema(description = "使用门槛价(单位:元)",type="BigDecimal")
+    private BigDecimal thresholdPrice;
+    /**
+     * 生效时间(时间戳,单位:毫秒)
+     */
+	@Schema(description = "生效时间(时间戳,单位:毫秒)",type="Long")
+    private Long effectiveTime;
+    /**
+     * 失效时间(时间戳,单位:毫秒)
+     */
+	@Schema(description = "失效时间(时间戳,单位:毫秒)",type="Long")
+    private Long expireTime;
+    /**
+     * 状态(0-已使用, 1-未使用, 2-锁定)
+     */
+	@Schema(description = "状态(0-已使用, 1-未使用, 2-锁定)",type="Integer")
+    private Integer status;
+    /**
+     * 使用时间(时间戳,单位:毫秒,未使用时为0)
+     */
+	@Schema(description = "使用时间(时间戳,单位:毫秒,未使用时为0)",type="Long")
+    private Long useTime;
+    /**
+     * 已使用金额(单位:元)
+     */
+	@Schema(description = "已使用金额(单位:元)",type="BigDecimal")
+    private BigDecimal amountUsed;
+    /**
+     * 优惠券类型(1-金额券, 2-时长券)
+     */
+	@Schema(description = "优惠券类型(1-金额券, 2-时长券)",type="Integer")
+    private Integer couponType;
+
+
+}

+ 89 - 0
src/main/java/com/qmrb/system/pojo/vo/CouponVO.java

@@ -0,0 +1,89 @@
+package com.qmrb.system.pojo.vo;
+
+import java.math.BigDecimal;
+import java.util.List;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+/**
+ * <p>
+ * 优惠券表视图对象
+ * </p>
+ *
+ * @author gs
+ * @since 2025-03-07
+ */
+@Data
+public class CouponVO {
+
+    /**
+     * 优惠券ID(主键)
+     */
+	@Schema(description = "优惠券ID(主键)",type="Long")
+    private Long id;
+    /**
+     * 受赠用户ID
+     */
+	@Schema(description = "受赠用户ID",type="Long")
+    private Long toUserId;
+    /**
+     * 发放者ID
+     */
+	@Schema(description = "发放者ID",type="Long")
+    private Long fromUserId;
+    /**
+     * 停车记录ID
+     */
+	@Schema(description = "停车记录ID",type="Long")
+    private Long goodsId;
+    /**
+     * 使用场景(1-停车场, 2-其他场景)
+     */
+	@Schema(description = "使用场景(1-停车场, 2-其他场景)",type="Integer")
+    private Integer scenes;
+    /**
+     * 优惠券面额(单位:元或时长,根据coupon_type决定)
+     */
+	@Schema(description = "优惠券面额(单位:元或时长,根据coupon_type决定)",type="BigDecimal")
+    private BigDecimal denomination;
+    /**
+     * 使用门槛价(单位:元)
+     */
+	@Schema(description = "使用门槛价(单位:元)",type="BigDecimal")
+    private BigDecimal thresholdPrice;
+    /**
+     * 生效时间(时间戳,单位:毫秒)
+     */
+	@Schema(description = "生效时间(时间戳,单位:毫秒)",type="Long")
+    private Long effectiveTime;
+    /**
+     * 失效时间(时间戳,单位:毫秒)
+     */
+	@Schema(description = "失效时间(时间戳,单位:毫秒)",type="Long")
+    private Long expireTime;
+    /**
+     * 状态(0-已使用, 1-未使用, 2-锁定)
+     */
+	@Schema(description = "状态(0-已使用, 1-未使用, 2-锁定)",type="Integer")
+    private Integer status;
+    /**
+     * 使用时间(时间戳,单位:毫秒,未使用时为0)
+     */
+	@Schema(description = "使用时间(时间戳,单位:毫秒,未使用时为0)",type="Long")
+    private Long useTime;
+    /**
+     * 已使用金额(单位:元)
+     */
+	@Schema(description = "已使用金额(单位:元)",type="BigDecimal")
+    private BigDecimal amountUsed;
+    /**
+     * 优惠券类型(1-金额券, 2-时长券)
+     */
+	@Schema(description = "优惠券类型(1-金额券, 2-时长券)",type="Integer")
+    private Integer couponType;
+
+	@Schema(description = "子分类")
+    private List<CouponVO> children;
+
+
+}

+ 41 - 0
src/main/java/com/qmrb/system/service/ICouponService.java

@@ -0,0 +1,41 @@
+package com.qmrb.system.service;
+
+import java.util.List;
+
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.qmrb.system.pojo.entity.Coupon;
+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 com.baomidou.mybatisplus.extension.service.IService;
+import jakarta.validation.Valid;
+
+/**
+ * <p>
+ * 优惠券表 服务类
+ * </p>
+ *
+ * @author gs
+ * @since 2025-03-07
+ */
+public interface ICouponService extends IService<Coupon> {
+	
+	/**分页查询
+	 * */
+	public Page<CouponVO> getPage(CouponQuery queryParams);
+
+	/**
+	 * 保存表单
+	 * */
+	public CouponForm saveForm(@Valid CouponForm form);
+	
+	/**更新
+	 * */
+	public boolean updateForm(Long id, CouponForm form);
+	
+	/**获取表单数据
+	 * */
+	public CouponForm getFormData(Long id);
+	
+}

+ 101 - 0
src/main/java/com/qmrb/system/service/impl/CouponServiceImpl.java

@@ -0,0 +1,101 @@
+package com.qmrb.system.service.impl;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+import java.util.Set;
+import java.util.stream.Collectors;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.qmrb.system.common.enums.StatusEnum;
+import com.qmrb.system.pojo.vo.Option;
+import com.qmrb.system.converter.CouponConverter;
+import com.qmrb.system.pojo.entity.Coupon;
+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.mapper.CouponMapper;
+import com.qmrb.system.service.ICouponService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+import cn.hutool.core.collection.CollectionUtil;
+import cn.hutool.core.util.StrUtil;
+import cn.hutool.core.lang.Assert;
+import jakarta.validation.Valid;
+
+/**
+ * <p>
+ * 优惠券表 服务实现类
+ * </p>
+ *
+ * @author gs
+ * @since 2025-03-07
+ */
+@Service
+public class CouponServiceImpl extends ServiceImpl<CouponMapper, Coupon> implements ICouponService {
+
+	@Autowired
+	private CouponConverter converter;
+
+	/**分页查询
+	 * */
+	@Override
+	public Page<CouponVO> getPage(CouponQuery queryParams) {
+		// 查询参数
+        int pageNum = queryParams.getPageNum();
+        int pageSize = queryParams.getPageSize();
+        Integer status = queryParams.getStatus();
+        //String keywords = queryParams.getKeywords();
+
+        // 查询数据
+        Page<Coupon> dictItemPage = this.page(
+                new Page<>(pageNum, pageSize),
+                new LambdaQueryWrapper<Coupon>()
+                	.eq(status != null, Coupon::getStatus,status)
+                	//.like(StrUtil.isNotBlank(keywords), Coupon::getCategoryName, keywords)
+        );
+
+        // 实体转换
+        Page<CouponVO> pageResult = converter.entity2Page(dictItemPage);
+        return pageResult;
+	}
+
+	/**
+	 * 保存表单
+	 * */
+	@Override
+	public CouponForm saveForm(@Valid CouponForm form) {
+		// 实体对象转换 form->entity
+		Coupon entity = converter.form2Entity(form);
+        // 持久化
+        this.save(entity);
+        CouponForm result = converter.entity2Form(entity);
+        return result;
+	}
+
+	/**更新
+	 * */
+	@Override
+	public boolean updateForm(Long id, CouponForm form) {
+		Coupon entity = converter.form2Entity(form);
+		entity.setId(id);
+        boolean result = this.updateById(entity);
+        return result;
+	}
+
+	/**获取表单数据
+	 * */
+	@Override
+	public CouponForm getFormData(Long id) {
+		// 获取entity
+		Coupon entity = this.getById(id);
+        Assert.isTrue(entity != null, "优惠券表不存在");
+
+        // 实体转换
+        CouponForm form = converter.entity2Form(entity);
+        return form;
+	}
+}

+ 5 - 0
src/main/resources/mapper/CouponMapper.xml

@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.qmrb.system.mapper.CouponMapper">
+
+</mapper>