28 lines
617 B
Java
28 lines
617 B
Java
package com.nanxiislet.admin.dto.query;
|
|
|
|
import com.nanxiislet.admin.common.base.BasePageQuery;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 项目查询条件
|
|
*
|
|
* @author NanxiIslet
|
|
* @since 2024-01-06
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@Schema(description = "项目查询条件")
|
|
public class ProjectQuery extends BasePageQuery {
|
|
|
|
@Schema(description = "项目类型")
|
|
private String type;
|
|
|
|
@Schema(description = "服务器ID")
|
|
private Long serverId;
|
|
|
|
@Schema(description = "状态")
|
|
private String status;
|
|
}
|