浏览代码

基础设施与服务重构1.0(未提交的VO)

panzhilin 3 月之前
父节点
当前提交
54c92f681d
共有 1 个文件被更改,包括 30 次插入0 次删除
  1. 30 0
      alien-entity/src/main/java/shop/alien/entity/store/vo/BatchDeleteAreaRequestVo.java

+ 30 - 0
alien-entity/src/main/java/shop/alien/entity/store/vo/BatchDeleteAreaRequestVo.java

@@ -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;
+}
+