1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ycl.vo.user;
|
| import com.ycl.api.BasePageVO;
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author Lyq
| * @version 1.0
| * @date 2022/9/7
| */
| public class UserVO {
|
| @Data
| @ApiModel
| public static class PageUserVO extends BasePageVO {
| @ApiModelProperty(value = "关键字")
| private String keyword;
|
| }
|
| }
|
|