Quellcode durchsuchen

fix:修改价目表-适用人数的类型

李亚非 vor 2 Monaten
Ursprung
Commit
0dbdc21bcd

+ 1 - 1
alien-entity/src/main/java/shop/alien/entity/store/StoreCuisine.java

@@ -68,7 +68,7 @@ public class StoreCuisine {
 
     @ApiModelProperty(value = "适用人数")
     @TableField("people_limit")
-    private Integer peopleLimit;
+    private String peopleLimit;
 
     @ApiModelProperty(value = "使用规则")
     @TableField("usage_rule")

+ 1 - 1
alien-entity/src/main/java/shop/alien/entity/store/StorePrice.java

@@ -69,7 +69,7 @@ public class StorePrice {
 
     @ApiModelProperty(value = "适用人数")
     @TableField("people_limit")
-    private Integer peopleLimit;
+    private String peopleLimit;
 
     @ApiModelProperty(value = "使用规则")
     @TableField("usage_rule")

+ 1 - 1
alien-entity/src/main/java/shop/alien/entity/store/dto/CuisineComboDto.java

@@ -66,7 +66,7 @@ public class CuisineComboDto {
 
     @ApiModelProperty(value = "适用人数")
     @TableField("people_limit")
-    private Integer peopleLimit;
+    private String peopleLimit;
 
     @ApiModelProperty(value = "使用规则")
     @TableField("usage_rule")

+ 1 - 1
alien-entity/src/main/java/shop/alien/entity/store/dto/CuisineTypeResponseDto.java

@@ -60,7 +60,7 @@ public class CuisineTypeResponseDto {
         private String reserveRule;
 
         @ApiModelProperty(value = "适用人数")
-        private Integer peopleLimit;
+        private String peopleLimit;
 
         @ApiModelProperty(value = "使用规则")
         private String usageRule;

+ 1 - 1
alien-entity/src/main/java/shop/alien/entity/store/vo/PriceListVo.java

@@ -60,7 +60,7 @@ public class PriceListVo {
     private String reserveRule;
 
     @ApiModelProperty(value = "适用人数")
-    private Integer peopleLimit;
+    private String peopleLimit;
 
     @ApiModelProperty(value = "使用规则")
     private String usageRule;