|
|
@@ -0,0 +1,30 @@
|
|
|
+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;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 批量删除区域请求VO
|
|
|
+ *
|
|
|
+ * @author assistant
|
|
|
+ * @since 2025-12-30
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
+@ApiModel(value = "BatchDeleteAreaRequestVo对象", description = "批量删除区域请求视图对象")
|
|
|
+public class BatchDeleteAreaRequestVo implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "门店ID", required = true, example = "1")
|
|
|
+ private Integer storeId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "区域ID列表", required = true, example = "[1, 2, 3]")
|
|
|
+ private List<Integer> areaIds;
|
|
|
+}
|
|
|
+
|