Files
youlai-boot/src/main/java/com/youlai/system/model/query/MenuQuery.java
2023-06-03 11:03:12 +08:00

23 lines
433 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.youlai.system.model.query;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
/**
* 菜单查询对象
*
* @author haoxr
* @since 2022/10/28
*/
@Schema(description ="部门分页查询对象")
@Data
public class MenuQuery {
@Schema(description="关键字(菜单名称)")
private String keywords;
@Schema(description="状态(1->显示0->隐藏)")
private Integer status;
}