Browse Source

用户端酒水菜单列表接口新增

zhangchen 2 weeks ago
parent
commit
06b8ea573b
1 changed files with 11 additions and 0 deletions
  1. 11 0
      alien-entity/src/main/java/shop/alien/entity/store/StoreMenu.java

+ 11 - 0
alien-entity/src/main/java/shop/alien/entity/store/StoreMenu.java

@@ -93,5 +93,16 @@ public class StoreMenu {
     @TableField("description")
     @TableField("description")
     private String description;
     private String description;
 
 
+    @ApiModelProperty(value = "酒精度")
+    @TableField("alcoholVolume")
+    private String alcoholVolume;
+
+    @ApiModelProperty(value = "分类")
+    @TableField("category")
+    private String category;
+
+    @ApiModelProperty(value = "品味")
+    @TableField("flavor")
+    private String flavor;
 
 
 }
 }