|
@@ -3,6 +3,8 @@ package com.citu.module.menduner.system.controller.base.web;
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler;
|
|
|
import com.citu.module.menduner.system.dal.dataobject.web.ContentStyle;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
@@ -55,6 +57,10 @@ public class WebContentRespVO {
|
|
|
@ExcelProperty("pc优选")
|
|
|
private List<ContentStyle> pcHomePreferred;
|
|
|
|
|
|
+ @Schema(description = "pc优选集团")
|
|
|
+ @ExcelProperty("pc优选集团")
|
|
|
+ private Object pcPreferredGroup;
|
|
|
+
|
|
|
@Schema(description = "手机端首页轮播图")
|
|
|
@ExcelProperty("手机端首页轮播图")
|
|
|
private List<ContentStyle> appHomeCarousel;
|
|
@@ -67,6 +73,10 @@ public class WebContentRespVO {
|
|
|
@ExcelProperty("手机端栏目")
|
|
|
private List<ContentStyle> appHomeColumn;
|
|
|
|
|
|
+ @Schema(description = "手机端优选集团")
|
|
|
+ @ExcelProperty("手机端优选集团")
|
|
|
+ private Object appPreferredGroup;
|
|
|
+
|
|
|
@Schema(description = "状态(0开启 1关闭)", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
|
|
@ExcelProperty("状态(0开启 1关闭)")
|
|
|
private String status;
|