oh-my-muse/docs/api-contracts/generated/java/com/muse/dto/RejectChapterParseResultRequest.java

148 lines
4.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 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;
/**
* 章节解析结果投影驳回请求AI 运行事实仍归 AI Orchestration。
*/
@Schema(name = "RejectChapterParseResultRequest", description = "章节解析结果投影驳回请求AI 运行事实仍归 AI Orchestration。")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2026-05-24T16:47:40.290595+08:00[Asia/Shanghai]", comments = "Generator version: 7.22.0")
public class RejectChapterParseResultRequest implements Serializable {
private static final long serialVersionUID = 1L;
private String commandId;
private String reason;
private @Nullable Integer expectedRevision;
public RejectChapterParseResultRequest() {
super();
}
/**
* Constructor with only required parameters
*/
public RejectChapterParseResultRequest(String commandId, String reason) {
this.commandId = commandId;
this.reason = reason;
}
public RejectChapterParseResultRequest commandId(String commandId) {
this.commandId = commandId;
return this;
}
/**
* 幂等键
* @return commandId
*/
@NotNull
@Schema(name = "commandId", description = "幂等键", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("commandId")
public String getCommandId() {
return commandId;
}
@JsonProperty("commandId")
public void setCommandId(String commandId) {
this.commandId = commandId;
}
public RejectChapterParseResultRequest reason(String reason) {
this.reason = reason;
return this;
}
/**
* 驳回原因
* @return reason
*/
@NotNull
@Schema(name = "reason", description = "驳回原因", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("reason")
public String getReason() {
return reason;
}
@JsonProperty("reason")
public void setReason(String reason) {
this.reason = reason;
}
public RejectChapterParseResultRequest expectedRevision(@Nullable Integer expectedRevision) {
this.expectedRevision = expectedRevision;
return this;
}
/**
* 当前 parse result revision
* @return expectedRevision
*/
@Schema(name = "expectedRevision", description = "当前 parse result revision", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("expectedRevision")
public @Nullable Integer getExpectedRevision() {
return expectedRevision;
}
@JsonProperty("expectedRevision")
public void setExpectedRevision(@Nullable Integer expectedRevision) {
this.expectedRevision = expectedRevision;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RejectChapterParseResultRequest rejectChapterParseResultRequest = (RejectChapterParseResultRequest) o;
return Objects.equals(this.commandId, rejectChapterParseResultRequest.commandId) &&
Objects.equals(this.reason, rejectChapterParseResultRequest.reason) &&
Objects.equals(this.expectedRevision, rejectChapterParseResultRequest.expectedRevision);
}
@Override
public int hashCode() {
return Objects.hash(commandId, reason, expectedRevision);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RejectChapterParseResultRequest {\n");
sb.append(" commandId: ").append(toIndentedString(commandId)).append("\n");
sb.append(" reason: ").append(toIndentedString(reason)).append("\n");
sb.append(" expectedRevision: ").append(toIndentedString(expectedRevision)).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 ");
}
}