|
|
@@ -0,0 +1,32 @@
|
|
|
+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 shop.alien.entity.store.StoreDictionary;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 门店三级分类结构VO
|
|
|
+ *
|
|
|
+ * @author ssk
|
|
|
+ * @since 2025-01-XX
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@JsonInclude
|
|
|
+@ApiModel(value = "StoreThreeLevelStructureVo对象", description = "门店三级分类结构")
|
|
|
+public class StoreThreeLevelStructureVo {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "门店ID")
|
|
|
+ private Integer storeId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "门店名称")
|
|
|
+ private String storeName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "三级分类树状结构")
|
|
|
+ private List<StoreDictionary> threeLevelStructure;
|
|
|
+
|
|
|
+}
|
|
|
+
|