|
@@ -1,14 +1,14 @@
|
|
|
package com.citu.module.menduner.system.controller.base.web;
|
|
|
|
|
|
|
|
|
+import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import com.citu.module.menduner.system.dal.dataobject.web.ContentStyle;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
-import lombok.*;
|
|
|
-import java.util.*;
|
|
|
-import java.util.*;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
import java.time.LocalDateTime;
|
|
|
-import com.alibaba.excel.annotation.*;
|
|
|
+import java.util.List;
|
|
|
|
|
|
@Schema(description = "管理后台 - 页面内容 Response VO")
|
|
|
@Data
|
|
@@ -51,6 +51,10 @@ public class WebContentRespVO {
|
|
|
@ExcelProperty("pc企业端广告")
|
|
|
private List<ContentStyle> pcBackendAdvertisement;
|
|
|
|
|
|
+ @Schema(description = "pc优选")
|
|
|
+ @ExcelProperty("pc优选")
|
|
|
+ private List<ContentStyle> pcHomePreferred;
|
|
|
+
|
|
|
@Schema(description = "手机端首页轮播图")
|
|
|
@ExcelProperty("手机端首页轮播图")
|
|
|
private List<ContentStyle> appHomeCarousel;
|
|
@@ -59,6 +63,10 @@ public class WebContentRespVO {
|
|
|
@ExcelProperty("手机端广告")
|
|
|
private List<ContentStyle> appAdvertisement;
|
|
|
|
|
|
+ @Schema(description = "手机端栏目")
|
|
|
+ @ExcelProperty("手机端栏目")
|
|
|
+ private List<ContentStyle> appHomeColumn;
|
|
|
+
|
|
|
@Schema(description = "状态(0开启 1关闭)", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
@ExcelProperty("状态(0开启 1关闭)")
|
|
|
private String status;
|