From dcd66c909dd1f2400c5338aa77269b9eacf67bf1 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Thu, 19 Dec 2024 12:57:28 +0800 Subject: [PATCH] refactor: 将项目名称从 E2Mart 修改为 RunStep- 更新了多个文件中的项目名称,包括 HTML 模板和日志输出 - 修改涉及错误页面、登录页面、主页等多处显示项目名称的地方 --- src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java | 36 +++++++++++++++++++++++++++++++++++- 1 files changed, 35 insertions(+), 1 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java b/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java index 2d19c5e..8166302 100644 --- a/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java +++ b/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java @@ -44,6 +44,40 @@ @ApiModelProperty(value = "积分") private BigDecimal score; - @ApiModelProperty(value = "是否有运费 1-是 2-包邮") + @ApiModelProperty(value = "是否有运费 1-是 2-包邮 (不使用了)") private Integer hasCarriage; + //运费方式 (1:固定运费 2:运费模板) + + @ApiModelProperty(value = "运费方式 (1:固定运费 2:运费模板)") + private Integer carriageType; + //运费金额 + + @ApiModelProperty(value = "固定运费金额") + private BigDecimal carriageAmount; + //运费模板ID + + @ApiModelProperty(value = "运费模板ID") + private Long carriageRuleId; + //重量 + + @ApiModelProperty(value = "重量") + private BigDecimal goodsWeight; + + @ApiModelProperty(value = "单位") + private String unit; + + @ApiModelProperty(value = "1级代理价格") + private BigDecimal levelOnePrice; + + @ApiModelProperty(value = "2级代理价格") + private BigDecimal levelTwoPrice; + + @ApiModelProperty(value = "3级代理价格") + private BigDecimal levelThreePrice; + + @ApiModelProperty(value = "是否收藏") + private Integer hasCollect; + + @ApiModelProperty(value = "销量排名") + private Integer rank; } -- Gitblit v1.9.1