zizi 10d1f97d3f feat(api): 全量补齐 6 模块 OpenAPI 契约(229 接口)+ 重新生成类型
Content 50 + AI 39 + Knowledge 59 + Market 32 + Account 33 + Meta 16 = 229
修复 Knowledge YAML 重复 key
重新生成 TypeScript 类型包(7 文件)+ Java DTO 骨架(626 类)
2026-05-24 15:06:11 +08:00

212 lines
5.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.muse.dto;
import java.net.URI;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.springframework.lang.Nullable;
import java.io.Serializable;
import java.time.OffsetDateTime;
import jakarta.validation.Valid;
import jakarta.validation.constraints.*;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.*;
import jakarta.annotation.Generated;
/**
* CreateBlockRequest
*/
@JsonTypeName("createBlock_request")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2026-05-24T15:05:54.603829+08:00[Asia/Shanghai]", comments = "Generator version: 7.22.0")
public class CreateBlockRequest implements Serializable {
private static final long serialVersionUID = 1L;
private String content;
/**
* Block 类型
*/
public enum BlockTypeEnum {
SCENE("scene"),
SECTION("section"),
NOTE("note");
private final String value;
BlockTypeEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static BlockTypeEnum fromValue(String value) {
for (BlockTypeEnum b : BlockTypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
private BlockTypeEnum blockType;
private @Nullable Integer sortOrder;
private @Nullable String title;
public CreateBlockRequest() {
super();
}
/**
* Constructor with only required parameters
*/
public CreateBlockRequest(String content, BlockTypeEnum blockType) {
this.content = content;
this.blockType = blockType;
}
public CreateBlockRequest content(String content) {
this.content = content;
return this;
}
/**
* Block 正文内容JSON 格式的 ProseMirror 文档)
* @return content
*/
@NotNull
@Schema(name = "content", description = "Block 正文内容JSON 格式的 ProseMirror 文档)", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("content")
public String getContent() {
return content;
}
@JsonProperty("content")
public void setContent(String content) {
this.content = content;
}
public CreateBlockRequest blockType(BlockTypeEnum blockType) {
this.blockType = blockType;
return this;
}
/**
* Block 类型
* @return blockType
*/
@NotNull
@Schema(name = "blockType", description = "Block 类型", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("blockType")
public BlockTypeEnum getBlockType() {
return blockType;
}
@JsonProperty("blockType")
public void setBlockType(BlockTypeEnum blockType) {
this.blockType = blockType;
}
public CreateBlockRequest sortOrder(@Nullable Integer sortOrder) {
this.sortOrder = sortOrder;
return this;
}
/**
* Get sortOrder
* @return sortOrder
*/
@Schema(name = "sortOrder", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("sortOrder")
public @Nullable Integer getSortOrder() {
return sortOrder;
}
@JsonProperty("sortOrder")
public void setSortOrder(@Nullable Integer sortOrder) {
this.sortOrder = sortOrder;
}
public CreateBlockRequest title(@Nullable String title) {
this.title = title;
return this;
}
/**
* Get title
* @return title
*/
@Size(max = 500)
@Schema(name = "title", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("title")
public @Nullable String getTitle() {
return title;
}
@JsonProperty("title")
public void setTitle(@Nullable String title) {
this.title = title;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateBlockRequest createBlockRequest = (CreateBlockRequest) o;
return Objects.equals(this.content, createBlockRequest.content) &&
Objects.equals(this.blockType, createBlockRequest.blockType) &&
Objects.equals(this.sortOrder, createBlockRequest.sortOrder) &&
Objects.equals(this.title, createBlockRequest.title);
}
@Override
public int hashCode() {
return Objects.hash(content, blockType, sortOrder, title);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateBlockRequest {\n");
sb.append(" content: ").append(toIndentedString(content)).append("\n");
sb.append(" blockType: ").append(toIndentedString(blockType)).append("\n");
sb.append(" sortOrder: ").append(toIndentedString(sortOrder)).append("\n");
sb.append(" title: ").append(toIndentedString(title)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(@Nullable Object o) {
return o == null ? "null" : o.toString().replace("\n", "\n ");
}
}