fix
Helius
2021-07-12 e47e795b062e68b55aa28c955a2c8407c6ed9cb5
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.matrix.system.app.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
/**
 * @author wzy
 * @date 2021-01-05
 **/
@ApiModel(value = "UsersQueryDto", description = "员工列表接口参数类")
public class UsersQueryDto {
 
    @ApiModelProperty(value = "查询参数")
    private String queryKey;
 
    public String getQueryKey() {
        return queryKey;
    }
 
    public void setQueryKey(String queryKey) {
        this.queryKey = queryKey;
    }
}