首次提交后端接口
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user