浏览代码

体育设备新增字段

zhangchen 2 周之前
父节点
当前提交
69ccf83c65

+ 4 - 0
alien-entity/src/main/java/shop/alien/entity/store/SportsEquipmentFacility.java

@@ -78,5 +78,9 @@ public class SportsEquipmentFacility implements Serializable {
     @ApiModelProperty(value = "修改人ID")
     @ApiModelProperty(value = "修改人ID")
     @TableField(value = "updated_user_id", fill = FieldFill.INSERT_UPDATE)
     @TableField(value = "updated_user_id", fill = FieldFill.INSERT_UPDATE)
     private Integer updatedUserId;
     private Integer updatedUserId;
+
+    @ApiModelProperty(value = "收费类型0-免费,1-收费")
+    @TableField("billing_type")
+    private Integer billingType;
 }
 }
 
 

+ 4 - 0
alien-entity/src/main/java/shop/alien/entity/store/vo/SportsEquipmentFacilityVo.java

@@ -1,5 +1,6 @@
 package shop.alien.entity.store.vo;
 package shop.alien.entity.store.vo;
 
 
+import com.baomidou.mybatisplus.annotation.TableField;
 import com.fasterxml.jackson.annotation.JsonInclude;
 import com.fasterxml.jackson.annotation.JsonInclude;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import io.swagger.annotations.ApiModelProperty;
@@ -51,6 +52,9 @@ public class SportsEquipmentFacilityVo implements Serializable {
     @ApiModelProperty(value = "是否显示在店铺详情文本")
     @ApiModelProperty(value = "是否显示在店铺详情文本")
     private String displayInStoreDetailText;
     private String displayInStoreDetailText;
 
 
+    @ApiModelProperty(value = "收费类型0-免费,1-收费")
+    private Integer billingType;
+
     @ApiModelProperty(value = "图片列表")
     @ApiModelProperty(value = "图片列表")
     private List<String> imageList;
     private List<String> imageList;
 }
 }