|
|
@@ -0,0 +1,110 @@
|
|
|
+package shop.alien.entity.storePlatform.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.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 运营活动详情返回对象(用户端)
|
|
|
+ *
|
|
|
+ * @author system
|
|
|
+ * @since 2025-01-XX
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
+@ApiModel(value = "StoreOperationalActivityDetailVo", description = "运营活动详情返回对象")
|
|
|
+public class StoreOperationalActivityDetailVo {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "商户ID")
|
|
|
+ private Integer storeId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动名称")
|
|
|
+ private String activityName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动宣传图URL")
|
|
|
+ private String promotionalImage;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动开始时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ private Date startTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动结束时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ private Date endTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "用户可参与次数,0表示不限制")
|
|
|
+ private Integer participationLimit;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动规则")
|
|
|
+ private String activityRule;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "奖励类型")
|
|
|
+ private String rewardType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "优惠券ID")
|
|
|
+ private Integer couponId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "优惠券发放数量")
|
|
|
+ private Integer couponQuantity;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "状态")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "拒绝原因")
|
|
|
+ private String approvalComments;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动类型")
|
|
|
+ private String activityType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "报名开始时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date signupStartTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "报名结束时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date signupEndTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动限制人数")
|
|
|
+ private Integer activityLimitPeople;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动详情")
|
|
|
+ private String activityDetails;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date createdTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动状态名称")
|
|
|
+ private String statusName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "优惠券名称")
|
|
|
+ private String couponName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "商户名称")
|
|
|
+ private String storeName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动标题图片URL")
|
|
|
+ private String activityTitleImgUrl;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动详情图片URL")
|
|
|
+ private String activityDetailImgUrl;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "当前报名人数")
|
|
|
+ private Integer currentSignupCount;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "当前通过人数")
|
|
|
+ private Integer currentApprovedCount;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否已报名")
|
|
|
+ private Boolean signedUp;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "报名是否截止")
|
|
|
+ private Boolean signupExpired;
|
|
|
+}
|