bug
jiangqs
2023-08-15 bb95ec391d10f04702822705ecb82c027e849b98
ruoyi-modules/ruoyi-goods/src/main/java/com/ruoyi/goods/domain/vo/MgtGoodsPageVo.java
@@ -24,19 +24,19 @@
    @ApiModelProperty(value = "商品id")
    private String goodsId;
    @Excel(name = "商品名称", width = 30)
    @Excel(name = "商品名称", width = 30, sort = 1)
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
    @Excel(name = "商品简介", width = 30)
    @Excel(name = "商品简介", width = 30, sort = 2)
    @ApiModelProperty(value = "商品简介")
    private String goodsIntroduction;
    @Excel(name = "商品分类", width = 30)
    @Excel(name = "商品分类", width = 30, sort = 3)
    @ApiModelProperty(value = "商品分类")
    private String goodsClass;
    @Excel(name = "商品标签", width = 30)
    @Excel(name = "商品标签", width = 30, sort = 5)
    @ApiModelProperty(value = "商品标签")
    private String goodsTags;
@@ -44,38 +44,38 @@
    @ApiModelProperty(value = "商品图片")
    private String goodsPicture;
    @Excel(name = "商品类型", width = 30)
    @Excel(name = "商品类型", width = 30, sort = 4)
    @ApiModelProperty(value = "商品类型1周期2服务3体验4单品")
    private String goodsType;
    @Excel(name = "商品建议售价", width = 30)
    @Excel(name = "商品建议售价", width = 30, sort = 6)
    @ApiModelProperty(value = "商品建议售价")
    @JsonSerialize(using = ToStringSerializer.class)
    private BigDecimal suggestSalesPrice;;
    @Excel(name = "最低售价", width = 30)
    @Excel(name = "最低售价", width = 30, sort = 7)
    @ApiModelProperty(value = "最低售价")
    @JsonSerialize(using = ToStringSerializer.class)
    private BigDecimal mininumPrice;;
    @Excel(name = "销量", width = 30)
    @Excel(name = "销量", width = 30, sort = 8)
    @ApiModelProperty(value = "销量")
    private Integer buyNumCount;
    @Excel(name = "销售额", width = 30)
    @Excel(name = "销售额", width = 30, sort = 9)
    @ApiModelProperty(value = "销售额")
    @JsonSerialize(using = ToStringSerializer.class)
    private BigDecimal buyMoneyTotal;
    @Excel(name = "是否推荐", width = 30)
    @Excel(name = "是否推荐", width = 30, sort = 10)
    @ApiModelProperty(value = "是否推荐")
    private String recommendFlag;
    @Excel(name = "商品状态", width = 30)
    @Excel(name = "商品状态", width = 30, sort = 11)
    @ApiModelProperty(value = "商品状态")
    private String goodsStatus;
    @Excel(name = "创建时间", width = 30, dateFormat  = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "创建时间", width = 30, dateFormat  = "yyyy-MM-dd HH:mm:ss", sort = 12)
    @ApiModelProperty(value = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;