Explorar el Código

change: 修改字段类型

gaohp hace 1 año
padre
commit
c67c5ff0fe

+ 1 - 1
feifan-module-mall/feifan-module-product-biz/src/main/java/cn/newfeifan/mall/module/product/controller/admin/spu/vo/ProductSpuPageReqVO.java

@@ -46,7 +46,7 @@ public class ProductSpuPageReqVO extends PageParam {
     private String producerArea;
 
     @Schema(description = "商品类别", example = "1")
-    private Boolean spuType;
+    private Integer spuType;
 
 
     @Schema(description = "商品名称", example = "清凉小短袖")

+ 1 - 1
feifan-module-mall/feifan-module-product-biz/src/main/java/cn/newfeifan/mall/module/product/controller/admin/spu/vo/ProductSpuRespVO.java

@@ -127,6 +127,6 @@ public class ProductSpuRespVO {
     private String producerArea;
 
     @Schema(description = "商品类别", example = "1")
-    private Boolean spuType;
+    private Integer spuType;
 
 }

+ 1 - 1
feifan-module-mall/feifan-module-product-biz/src/main/java/cn/newfeifan/mall/module/product/controller/admin/spu/vo/ProductSpuSaveReqVO.java

@@ -97,6 +97,6 @@ public class ProductSpuSaveReqVO {
     private String producerArea;
 
     @Schema(description = "商品类别", example = "1")
-    private Boolean spuType;
+    private Integer spuType;
 
 }

+ 1 - 1
feifan-module-mall/feifan-module-product-biz/src/main/java/cn/newfeifan/mall/module/product/dal/dataobject/spu/ProductSpuDO.java

@@ -175,7 +175,7 @@ public class ProductSpuDO extends BaseDO {
     /**
      * 商品类别
      */
-    private Boolean spuType;
+    private Integer spuType;
 
 
 }