|
|
@@ -0,0 +1,146 @@
|
|
|
+package shop.alien.entity.store.vo;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 商品表与运动健身商品表关联查询VO
|
|
|
+ *
|
|
|
+ * @author system
|
|
|
+ * @since 2025-01-XX
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@JsonInclude
|
|
|
+@ApiModel(value = "StoreProductItemGymVo对象", description = "商品表与运动健身商品表关联查询VO")
|
|
|
+public class StoreProductItemGymVo implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ // ========== store_product_item 表字段 ==========
|
|
|
+ @ApiModelProperty(value = "商品表主键")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "父id")
|
|
|
+ private Long pid;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "门店id")
|
|
|
+ private Integer storeId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "商品名称")
|
|
|
+ private String prodName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "商品类型,整型枚举:1酒吧-酒水 2酒吧-餐食 3美食-餐食 4运动健身-单次 5运动健身-多次")
|
|
|
+ private Integer prodType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "图片列表,最多 9 张 URL")
|
|
|
+ private String images;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "图文详情-图片")
|
|
|
+ private String imageContent;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "图文详情-文字")
|
|
|
+ private String detailContent;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "补充说明")
|
|
|
+ private String extraNote;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否需要预约:0=否,1=是")
|
|
|
+ private Integer needReserve;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "预约规则")
|
|
|
+ private String reserveRule;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "适用人数")
|
|
|
+ private Integer peopleLimit;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "使用规则")
|
|
|
+ private String usageRule;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "状态:0禁用,1启用")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "拒绝原因")
|
|
|
+ private String rejectionReason;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "删除标记, 0:未删除, 1:已删除")
|
|
|
+ private Integer deleteFlag;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建人")
|
|
|
+ private Long createdUserId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "更新人")
|
|
|
+ private Long updatedUserId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date createdTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "更新时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date updatedTime;
|
|
|
+
|
|
|
+ // ========== store_product_gym 表字段 ==========
|
|
|
+ @ApiModelProperty(value = "运动健身商品表主键")
|
|
|
+ private Long gymId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "商品表主键(关联字段)")
|
|
|
+ private Long extId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "名称")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "上课形式,如一对一/小班课")
|
|
|
+ private String classMode;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "可用周期(天)")
|
|
|
+ private Integer availableDays;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "总课时数(节)")
|
|
|
+ private Integer totalSessions;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "价格(¥)")
|
|
|
+ private BigDecimal price;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "课程功效")
|
|
|
+ private String courseEffect;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "适用人群")
|
|
|
+ private String suitablePeople;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "适用会员")
|
|
|
+ private String suitableMembership;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "淋浴设施")
|
|
|
+ private String showerFacility;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "额外须知")
|
|
|
+ private String extraNotice;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "运动健身商品状态:0禁用,1启用")
|
|
|
+ private Integer gymStatus;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "运动健身商品删除标记, 0:未删除, 1:已删除")
|
|
|
+ private Integer gymDeleteFlag;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "运动健身商品创建人")
|
|
|
+ private Long gymCreatedUserId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "运动健身商品更新人")
|
|
|
+ private Long gymUpdatedUserId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "运动健身商品创建时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date gymCreatedTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "运动健身商品更新时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date gymUpdatedTime;
|
|
|
+}
|
|
|
+
|