27 lines
577 B
Java
27 lines
577 B
Java
package com.nanxiislet.admin.dto;
|
|
|
|
import com.nanxiislet.admin.common.base.BasePageQuery;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 域名查询参数
|
|
*
|
|
* @author NanxiIslet
|
|
* @since 2026-01-13
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
public class DomainQueryDTO extends BasePageQuery {
|
|
|
|
@Schema(description = "服务器ID")
|
|
private Long serverId;
|
|
|
|
@Schema(description = "域名状态")
|
|
private String status;
|
|
|
|
@Schema(description = "SSL状态")
|
|
private String sslStatus;
|
|
}
|