All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feingto.cloud.dto.oauth.ClientDetailApiDTO Maven / Gradle / Ivy

There is a newer version: 2.3.8.RELEASE
Show newest version
package com.feingto.cloud.dto.oauth;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.feingto.cloud.domain.type.Stage;
import lombok.*;

import java.io.Serializable;

/**
 * 密钥API绑定
 *
 * @author longfei
 */
@Builder
@Data
@EqualsAndHashCode(callSuper = false)
@NoArgsConstructor
@AllArgsConstructor
public class ClientDetailApiDTO implements Serializable {
    private static final long serialVersionUID = -2169525226878130450L;

    @JsonIgnoreProperties(value = "apis", allowSetters = true)
    private ClientDetailDTO clientDetail;

    private String apiId;

    /**
     * 环境类型(线上、预发、测试)
     */
    private Stage stage;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy