Helius
2021-06-30 3445c240f623d79ccdf8ef68d020d49e04885cb8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.xzx.gc.model.query;
 
 
import com.xzx.gc.annotation.Query;
 
/**
 *功能查询
 */
public class CoreFunctionQuery extends PageParam {
    @Query(name = "名称", display = true)
    private String name;
    @Query(name = "访问路径", display = true)
    private String accessUrl;
    @Query(name = "功能点类型", display = true)
    private String type;
    public String getName(){
        return  name;
    }
    public void setName(String name ){
        this.name = name;
    }
    public String getAccessUrl(){
        return  accessUrl;
    }
    public void setAccessUrl(String accessUrl ){
        this.accessUrl = accessUrl;
    }
    public String getType(){
        return  type;
    }
    public void setType(String type ){
        this.type = type;
    }
 
}