From b722537de03af08b60ad269d67bd57ccb5e4d22c Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Mon, 10 Feb 2025 11:41:50 +0800 Subject: [PATCH] feat(pay): 添加 FIUU充值功能并优化支付流程 - 新增 FIUU 充值接口和相关请求模型 - 更新 FIUU 支付流程,支持订单和充值操作 - 优化 FIUU 回调处理,增加对充值订单的支持 - 调整订单状态更新逻辑,确保支付成功后正确更新 --- src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java b/src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java index 2427361..7194cdf 100644 --- a/src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java +++ b/src/main/java/cc/mrbird/febs/mall/entity/MallGoods.java @@ -26,6 +26,8 @@ private String thumb; + private String goodsParameter; + private String goodsDetails; private Integer isSale; @@ -45,6 +47,11 @@ private Long categoryId; + /** + * 是否热卖 1:是 2:否 + */ + public static final Integer ISHOT_STATE_YES = 1; + public static final Integer ISHOT_STATE_NO = 2; private Integer isHot; /** @@ -96,8 +103,39 @@ private List<MallGoodsStyle> styles; @TableField(exist = false) + private List<MallGoodsSku> skus; + + @TableField(exist = false) private List<String> images; @TableField(exist = false) private String orderNo; + + @TableField(exist = false) + private Integer hasCollect; + + private Integer hasCarriage; + + private BigDecimal carriage; + + private String wxCodeImg; + //运费方式 (1:固定运费 2:运费模板) + private Integer carriageType; + //运费金额 + private BigDecimal carriageAmount; + //运费模板ID + private Long carriageRuleId; + //重量 + private BigDecimal goodsWeight; + //序号 + private Integer orderNumber; + private BigDecimal levelOnePrice; + private BigDecimal levelTwoPrice; + private BigDecimal levelThreePrice; + + + @TableField(exist = false) + private List<Long> couponIds; + private Long activityId; //活动ID + } -- Gitblit v1.9.1