eight
2024-11-21 b8ed4828e4d798111d36fc58ebb718ebe62359b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.lihu.jh.module.system.controller.admin.oauth2.vo.client;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import cn.lihu.jh.framework.common.pojo.PageParam;
 
@Schema(description = "管理后台 - OAuth2 客户端分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class OAuth2ClientPageReqVO extends PageParam {
 
    @Schema(description = "应用名,模糊匹配", example = "土豆")
    private String name;
 
    @Schema(description = "状态,参见 CommonStatusEnum 枚举", example = "1")
    private Integer status;
 
}