184 lines
4.8 KiB
Java
184 lines
4.8 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 com.fasterxml.jackson.annotation.JsonTypeName;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
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;
|
|
|
|
/**
|
|
* UpdateEntityRequest
|
|
*/
|
|
|
|
@JsonTypeName("updateEntity_request")
|
|
@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 UpdateEntityRequest implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private @Nullable String name;
|
|
|
|
private @Nullable String description;
|
|
|
|
@Valid
|
|
private Map<String, Object> attributes = new HashMap<>();
|
|
|
|
private String commandId;
|
|
|
|
public UpdateEntityRequest() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructor with only required parameters
|
|
*/
|
|
public UpdateEntityRequest(String commandId) {
|
|
this.commandId = commandId;
|
|
}
|
|
|
|
public UpdateEntityRequest name(@Nullable String name) {
|
|
this.name = name;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get name
|
|
* @return name
|
|
*/
|
|
|
|
@Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("name")
|
|
public @Nullable String getName() {
|
|
return name;
|
|
}
|
|
|
|
@JsonProperty("name")
|
|
public void setName(@Nullable String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public UpdateEntityRequest description(@Nullable String description) {
|
|
this.description = description;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get description
|
|
* @return description
|
|
*/
|
|
|
|
@Schema(name = "description", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("description")
|
|
public @Nullable String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
@JsonProperty("description")
|
|
public void setDescription(@Nullable String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public UpdateEntityRequest attributes(Map<String, Object> attributes) {
|
|
this.attributes = attributes;
|
|
return this;
|
|
}
|
|
|
|
public UpdateEntityRequest putAttributesItem(String key, Object attributesItem) {
|
|
if (this.attributes == null) {
|
|
this.attributes = new HashMap<>();
|
|
}
|
|
this.attributes.put(key, attributesItem);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 自定义属性键值对
|
|
* @return attributes
|
|
*/
|
|
|
|
@Schema(name = "attributes", description = "自定义属性键值对", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("attributes")
|
|
public Map<String, Object> getAttributes() {
|
|
return attributes;
|
|
}
|
|
|
|
@JsonProperty("attributes")
|
|
public void setAttributes(Map<String, Object> attributes) {
|
|
this.attributes = attributes;
|
|
}
|
|
|
|
public UpdateEntityRequest 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;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) {
|
|
return true;
|
|
}
|
|
if (o == null || getClass() != o.getClass()) {
|
|
return false;
|
|
}
|
|
UpdateEntityRequest updateEntityRequest = (UpdateEntityRequest) o;
|
|
return Objects.equals(this.name, updateEntityRequest.name) &&
|
|
Objects.equals(this.description, updateEntityRequest.description) &&
|
|
Objects.equals(this.attributes, updateEntityRequest.attributes) &&
|
|
Objects.equals(this.commandId, updateEntityRequest.commandId);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(name, description, attributes, commandId);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("class UpdateEntityRequest {\n");
|
|
sb.append(" name: ").append(toIndentedString(name)).append("\n");
|
|
sb.append(" description: ").append(toIndentedString(description)).append("\n");
|
|
sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n");
|
|
sb.append(" commandId: ").append(toIndentedString(commandId)).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 ");
|
|
}
|
|
}
|
|
|