|
|
@@ -0,0 +1,29 @@
|
|
|
+package shop.alien.entity.store.vo;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 更新区域头图请求VO
|
|
|
+ *
|
|
|
+ * @author assistant
|
|
|
+ * @since 2025-01-XX
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
+@ApiModel(value = "UpdateAreaHeadUrlRequestVo对象", description = "更新区域头图请求视图对象")
|
|
|
+public class UpdateAreaHeadUrlRequestVo implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "区域ID", required = true, example = "1")
|
|
|
+ private Integer areaId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "区域头图URL(长字符串)", required = true, example = "https://example.com/head1.jpg,https://example.com/head2.jpg")
|
|
|
+ private String areaHeadUrl;
|
|
|
+}
|
|
|
+
|