oh-my-muse/docs/api-contracts/generated/java/com/muse/dto/FunctionChainActivateRequest.java
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

172 lines
5.0 KiB
Java

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;
/**
* FunctionChainActivateRequest
*/
@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 FunctionChainActivateRequest implements Serializable {
private static final long serialVersionUID = 1L;
private String commandId;
private String reason;
private @Nullable String impactPreviewId;
private @Nullable Integer expectedCurrentVersion;
public FunctionChainActivateRequest() {
super();
}
/**
* Constructor with only required parameters
*/
public FunctionChainActivateRequest(String commandId, String reason) {
this.commandId = commandId;
this.reason = reason;
}
public FunctionChainActivateRequest 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 FunctionChainActivateRequest 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 FunctionChainActivateRequest impactPreviewId(@Nullable String impactPreviewId) {
this.impactPreviewId = impactPreviewId;
return this;
}
/**
* 影响预览引用 ID
* @return impactPreviewId
*/
@Schema(name = "impactPreviewId", description = "影响预览引用 ID", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("impactPreviewId")
public @Nullable String getImpactPreviewId() {
return impactPreviewId;
}
@JsonProperty("impactPreviewId")
public void setImpactPreviewId(@Nullable String impactPreviewId) {
this.impactPreviewId = impactPreviewId;
}
public FunctionChainActivateRequest expectedCurrentVersion(@Nullable Integer expectedCurrentVersion) {
this.expectedCurrentVersion = expectedCurrentVersion;
return this;
}
/**
* 期望当前激活版本,乐观锁
* @return expectedCurrentVersion
*/
@Schema(name = "expectedCurrentVersion", description = "期望当前激活版本,乐观锁", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("expectedCurrentVersion")
public @Nullable Integer getExpectedCurrentVersion() {
return expectedCurrentVersion;
}
@JsonProperty("expectedCurrentVersion")
public void setExpectedCurrentVersion(@Nullable Integer expectedCurrentVersion) {
this.expectedCurrentVersion = expectedCurrentVersion;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FunctionChainActivateRequest functionChainActivateRequest = (FunctionChainActivateRequest) o;
return Objects.equals(this.commandId, functionChainActivateRequest.commandId) &&
Objects.equals(this.reason, functionChainActivateRequest.reason) &&
Objects.equals(this.impactPreviewId, functionChainActivateRequest.impactPreviewId) &&
Objects.equals(this.expectedCurrentVersion, functionChainActivateRequest.expectedCurrentVersion);
}
@Override
public int hashCode() {
return Objects.hash(commandId, reason, impactPreviewId, expectedCurrentVersion);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class FunctionChainActivateRequest {\n");
sb.append(" commandId: ").append(toIndentedString(commandId)).append("\n");
sb.append(" reason: ").append(toIndentedString(reason)).append("\n");
sb.append(" impactPreviewId: ").append(toIndentedString(impactPreviewId)).append("\n");
sb.append(" expectedCurrentVersion: ").append(toIndentedString(expectedCurrentVersion)).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 ");
}
}