|
@@ -5,26 +5,29 @@ import lombok.Data;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
-/**
|
|
|
|
- * @author jason
|
|
|
|
- */
|
|
|
|
@Schema(description = "用户 App - 页面装修 Resp VO")
|
|
@Schema(description = "用户 App - 页面装修 Resp VO")
|
|
@Data
|
|
@Data
|
|
public class AppDecorateComponentRespVO {
|
|
public class AppDecorateComponentRespVO {
|
|
|
|
+
|
|
@Schema(description = "页面类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
@Schema(description = "页面类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
private Integer type;
|
|
private Integer type;
|
|
|
|
+
|
|
@Schema(description = "页面组件", requiredMode = Schema.RequiredMode.REQUIRED, example = "TODO")
|
|
@Schema(description = "页面组件", requiredMode = Schema.RequiredMode.REQUIRED, example = "TODO")
|
|
private List<AppComponentRespVO> components;
|
|
private List<AppComponentRespVO> components;
|
|
|
|
|
|
@Schema(description = "用户 App - 页面组件 Resp VO")
|
|
@Schema(description = "用户 App - 页面组件 Resp VO")
|
|
@Data
|
|
@Data
|
|
public static class AppComponentRespVO {
|
|
public static class AppComponentRespVO {
|
|
|
|
+
|
|
@Schema(description = "组件编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
@Schema(description = "组件编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
private Long id;
|
|
private Long id;
|
|
|
|
+
|
|
@Schema(description = "组件编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "nav-menu")
|
|
@Schema(description = "组件编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "nav-menu")
|
|
private String componentCode;
|
|
private String componentCode;
|
|
|
|
+
|
|
@Schema(description = "组件的内容配置项", requiredMode = Schema.RequiredMode.NOT_REQUIRED, example = "TODO")
|
|
@Schema(description = "组件的内容配置项", requiredMode = Schema.RequiredMode.NOT_REQUIRED, example = "TODO")
|
|
private String componentValue;
|
|
private String componentValue;
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|