Content 50 + AI 39 + Knowledge 59 + Market 32 + Account 33 + Meta 16 = 229 修复 Knowledge YAML 重复 key 重新生成 TypeScript 类型包(7 文件)+ Java DTO 骨架(626 类)
212 lines
5.7 KiB
Java
212 lines
5.7 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.JsonValue;
|
|
import com.muse.dto.AdminQuotaRequestCreateTargetQuota;
|
|
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;
|
|
|
|
/**
|
|
* 管理端发起额度配置请求
|
|
*/
|
|
|
|
@Schema(name = "AdminQuotaRequestCreate", description = "管理端发起额度配置请求")
|
|
@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 AdminQuotaRequestCreate implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private String commandId;
|
|
|
|
/**
|
|
* 额度配置类型
|
|
*/
|
|
public enum RequestTypeEnum {
|
|
PLAN_CONFIG("plan_config"),
|
|
|
|
BALANCE_CONFIG("balance_config"),
|
|
|
|
SUBSCRIPTION_SYNC("subscription_sync");
|
|
|
|
private final String value;
|
|
|
|
RequestTypeEnum(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
@JsonValue
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return String.valueOf(value);
|
|
}
|
|
|
|
@JsonCreator
|
|
public static RequestTypeEnum fromValue(String value) {
|
|
for (RequestTypeEnum b : RequestTypeEnum.values()) {
|
|
if (b.value.equals(value)) {
|
|
return b;
|
|
}
|
|
}
|
|
throw new IllegalArgumentException("Unexpected value '" + value + "'");
|
|
}
|
|
}
|
|
|
|
private RequestTypeEnum requestType;
|
|
|
|
private @Nullable String reason;
|
|
|
|
private @Nullable AdminQuotaRequestCreateTargetQuota targetQuota;
|
|
|
|
public AdminQuotaRequestCreate() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructor with only required parameters
|
|
*/
|
|
public AdminQuotaRequestCreate(String commandId, RequestTypeEnum requestType) {
|
|
this.commandId = commandId;
|
|
this.requestType = requestType;
|
|
}
|
|
|
|
public AdminQuotaRequestCreate 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 AdminQuotaRequestCreate requestType(RequestTypeEnum requestType) {
|
|
this.requestType = requestType;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 额度配置类型
|
|
* @return requestType
|
|
*/
|
|
@NotNull
|
|
@Schema(name = "requestType", description = "额度配置类型", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
@JsonProperty("requestType")
|
|
public RequestTypeEnum getRequestType() {
|
|
return requestType;
|
|
}
|
|
|
|
@JsonProperty("requestType")
|
|
public void setRequestType(RequestTypeEnum requestType) {
|
|
this.requestType = requestType;
|
|
}
|
|
|
|
public AdminQuotaRequestCreate reason(@Nullable String reason) {
|
|
this.reason = reason;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* 请求原因(写入审计日志)
|
|
* @return reason
|
|
*/
|
|
|
|
@Schema(name = "reason", description = "请求原因(写入审计日志)", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("reason")
|
|
public @Nullable String getReason() {
|
|
return reason;
|
|
}
|
|
|
|
@JsonProperty("reason")
|
|
public void setReason(@Nullable String reason) {
|
|
this.reason = reason;
|
|
}
|
|
|
|
public AdminQuotaRequestCreate targetQuota(@Nullable AdminQuotaRequestCreateTargetQuota targetQuota) {
|
|
this.targetQuota = targetQuota;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Get targetQuota
|
|
* @return targetQuota
|
|
*/
|
|
@Valid
|
|
@Schema(name = "targetQuota", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
|
@JsonProperty("targetQuota")
|
|
public @Nullable AdminQuotaRequestCreateTargetQuota getTargetQuota() {
|
|
return targetQuota;
|
|
}
|
|
|
|
@JsonProperty("targetQuota")
|
|
public void setTargetQuota(@Nullable AdminQuotaRequestCreateTargetQuota targetQuota) {
|
|
this.targetQuota = targetQuota;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) {
|
|
return true;
|
|
}
|
|
if (o == null || getClass() != o.getClass()) {
|
|
return false;
|
|
}
|
|
AdminQuotaRequestCreate adminQuotaRequestCreate = (AdminQuotaRequestCreate) o;
|
|
return Objects.equals(this.commandId, adminQuotaRequestCreate.commandId) &&
|
|
Objects.equals(this.requestType, adminQuotaRequestCreate.requestType) &&
|
|
Objects.equals(this.reason, adminQuotaRequestCreate.reason) &&
|
|
Objects.equals(this.targetQuota, adminQuotaRequestCreate.targetQuota);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(commandId, requestType, reason, targetQuota);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("class AdminQuotaRequestCreate {\n");
|
|
sb.append(" commandId: ").append(toIndentedString(commandId)).append("\n");
|
|
sb.append(" requestType: ").append(toIndentedString(requestType)).append("\n");
|
|
sb.append(" reason: ").append(toIndentedString(reason)).append("\n");
|
|
sb.append(" targetQuota: ").append(toIndentedString(targetQuota)).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 ");
|
|
}
|
|
}
|
|
|