200 lines
6.0 KiB
Java
200 lines
6.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;
|
|
|
|
/**
|
|
* MetaSchemaRollbackRequest
|
|
*/
|
|
|
|
@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 MetaSchemaRollbackRequest implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private String commandId;
|
|
|
|
private String reason;
|
|
|
|
private Integer expectedActiveVersion;
|
|
|
|
private String validationResultId;
|
|
|
|
private String impactPreviewId;
|
|
|
|
public MetaSchemaRollbackRequest() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructor with only required parameters
|
|
*/
|
|
public MetaSchemaRollbackRequest(String commandId, String reason, Integer expectedActiveVersion, String validationResultId, String impactPreviewId) {
|
|
this.commandId = commandId;
|
|
this.reason = reason;
|
|
this.expectedActiveVersion = expectedActiveVersion;
|
|
this.validationResultId = validationResultId;
|
|
this.impactPreviewId = impactPreviewId;
|
|
}
|
|
|
|
public MetaSchemaRollbackRequest 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 MetaSchemaRollbackRequest 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 MetaSchemaRollbackRequest expectedActiveVersion(Integer expectedActiveVersion) {
|
|
this.expectedActiveVersion = expectedActiveVersion;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 期望当前激活版本,乐观锁
|
|
* @return expectedActiveVersion
|
|
*/
|
|
@NotNull
|
|
@Schema(name = "expectedActiveVersion", description = "期望当前激活版本,乐观锁", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
@JsonProperty("expectedActiveVersion")
|
|
public Integer getExpectedActiveVersion() {
|
|
return expectedActiveVersion;
|
|
}
|
|
|
|
@JsonProperty("expectedActiveVersion")
|
|
public void setExpectedActiveVersion(Integer expectedActiveVersion) {
|
|
this.expectedActiveVersion = expectedActiveVersion;
|
|
}
|
|
|
|
public MetaSchemaRollbackRequest validationResultId(String validationResultId) {
|
|
this.validationResultId = validationResultId;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 回滚前校验结果引用 ID
|
|
* @return validationResultId
|
|
*/
|
|
@NotNull
|
|
@Schema(name = "validationResultId", description = "回滚前校验结果引用 ID", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
@JsonProperty("validationResultId")
|
|
public String getValidationResultId() {
|
|
return validationResultId;
|
|
}
|
|
|
|
@JsonProperty("validationResultId")
|
|
public void setValidationResultId(String validationResultId) {
|
|
this.validationResultId = validationResultId;
|
|
}
|
|
|
|
public MetaSchemaRollbackRequest impactPreviewId(String impactPreviewId) {
|
|
this.impactPreviewId = impactPreviewId;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 回滚影响预览引用 ID
|
|
* @return impactPreviewId
|
|
*/
|
|
@NotNull
|
|
@Schema(name = "impactPreviewId", description = "回滚影响预览引用 ID", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
@JsonProperty("impactPreviewId")
|
|
public String getImpactPreviewId() {
|
|
return impactPreviewId;
|
|
}
|
|
|
|
@JsonProperty("impactPreviewId")
|
|
public void setImpactPreviewId(String impactPreviewId) {
|
|
this.impactPreviewId = impactPreviewId;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) {
|
|
return true;
|
|
}
|
|
if (o == null || getClass() != o.getClass()) {
|
|
return false;
|
|
}
|
|
MetaSchemaRollbackRequest metaSchemaRollbackRequest = (MetaSchemaRollbackRequest) o;
|
|
return Objects.equals(this.commandId, metaSchemaRollbackRequest.commandId) &&
|
|
Objects.equals(this.reason, metaSchemaRollbackRequest.reason) &&
|
|
Objects.equals(this.expectedActiveVersion, metaSchemaRollbackRequest.expectedActiveVersion) &&
|
|
Objects.equals(this.validationResultId, metaSchemaRollbackRequest.validationResultId) &&
|
|
Objects.equals(this.impactPreviewId, metaSchemaRollbackRequest.impactPreviewId);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(commandId, reason, expectedActiveVersion, validationResultId, impactPreviewId);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("class MetaSchemaRollbackRequest {\n");
|
|
sb.append(" commandId: ").append(toIndentedString(commandId)).append("\n");
|
|
sb.append(" reason: ").append(toIndentedString(reason)).append("\n");
|
|
sb.append(" expectedActiveVersion: ").append(toIndentedString(expectedActiveVersion)).append("\n");
|
|
sb.append(" validationResultId: ").append(toIndentedString(validationResultId)).append("\n");
|
|
sb.append(" impactPreviewId: ").append(toIndentedString(impactPreviewId)).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 ");
|
|
}
|
|
}
|
|
|