From 2e0ab4a5f88bd3f947efd4f34db7f0981ab47351 Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期五, 05 九月 2025 11:28:15 +0800
Subject: [PATCH] 修改查询

---
 ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/vo/TGoodsVO.java |  142 +----------------------------------------------
 1 files changed, 4 insertions(+), 138 deletions(-)

diff --git a/ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/vo/TGoodsVO.java b/ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/vo/TGoodsVO.java
index 2e3319d..a32b3a8 100644
--- a/ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/vo/TGoodsVO.java
+++ b/ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/vo/TGoodsVO.java
@@ -38,7 +38,7 @@
      * 所需积分
      */
     @ApiModelProperty(value = "所需积分")
-    private String integral;
+    private Integer integral;
     /**
      * 商品原价
      */
@@ -59,11 +59,13 @@
      */
     @ApiModelProperty(value = "单个用户可兑换数量")
     private Integer userCount;
+    @ApiModelProperty(value = "排序")
+    private Integer sort;
     /**
      * 商品类型id
      */
     @ApiModelProperty(value = "商品类型id")
-    private Integer typeId;
+    private String typeIds;
     /**
      * 商品封面图
      */
@@ -96,140 +98,4 @@
     private Integer type;
 
 
-    public Integer getId() {
-        return id;
-    }
-
-    public void setId(Integer id) {
-        this.id = id;
-    }
-
-    public String getName() {
-        return name;
-    }
-
-    public void setName(String name) {
-        this.name = name;
-    }
-
-    public String getintegral() {
-        return 
-integral;
-    }
-
-    public void setintegral(String
-integral) {
-        this.
-integral = 
-integral;
-    }
-
-    public BigDecimal getPrice() {
-        return price;
-    }
-
-    public void setPrice(BigDecimal price) {
-        this.price = price;
-    }
-
-    public Integer getTotal() {
-        return total;
-    }
-
-    public void setTotal(Integer total) {
-        this.total = total;
-    }
-
-    public Integer getSurplus() {
-        return surplus;
-    }
-
-    public void setSurplus(Integer surplus) {
-        this.surplus = surplus;
-    }
-
-    public Integer getUserCount() {
-        return userCount;
-    }
-
-    public void setUserCount(Integer userCount) {
-        this.userCount = userCount;
-    }
-
-    public Integer getTypeId() {
-        return typeId;
-    }
-
-    public void setTypeId(Integer typeId) {
-        this.typeId = typeId;
-    }
-
-    public String getCoverImg() {
-        return coverImg;
-    }
-
-    public void setCoverImg(String coverImg) {
-        this.coverImg = coverImg;
-    }
-
-    public String getDetailImg() {
-        return detailImg;
-    }
-
-    public void setDetailImg(String detailImg) {
-        this.detailImg = detailImg;
-    }
-
-    public String getDetail() {
-        return detail;
-    }
-
-    public void setDetail(String detail) {
-        this.detail = detail;
-    }
-
-    public Date getInsertTime() {
-        return insertTime;
-    }
-
-    public void setInsertTime(Date insertTime) {
-        this.insertTime = insertTime;
-    }
-
-    public Integer getIsDelete() {
-        return isDelete;
-    }
-
-    public void setIsDelete(Integer isDelete) {
-        this.isDelete = isDelete;
-    }
-
-    public Integer getType() {
-        return type;
-    }
-
-    public void setType(Integer type) {
-        this.type = type;
-    }
-
-    @Override
-    public String toString() {
-        return "TGoods{" +
-        ", id=" + id +
-        ", name=" + name +
-        ", integral=" +
-integral +
-        ", price=" + price +
-        ", total=" + total +
-        ", surplus=" + surplus +
-        ", userCount=" + userCount +
-        ", typeId=" + typeId +
-        ", coverImg=" + coverImg +
-        ", detailImg=" + detailImg +
-        ", detail=" + detail +
-        ", insertTime=" + insertTime +
-        ", isDelete=" + isDelete +
-        ", type=" + type +
-        "}";
-    }
 }

--
Gitblit v1.7.1