puzhibing
2023-10-08 22199bbdda579861736420fe26c2873ab0f5d21c
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
36
37
38
39
40
41
package com.sinata.rest.modular.member.controller.common.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel(value = "接口说明")
public class ApiVo {
 
    @ApiModelProperty(value = "是否开启签名加密")
    private Boolean signOpen;
 
    @ApiModelProperty(value = "是否开启鉴权Token")
    private Boolean authOpen;
 
    @ApiModelProperty(value = "不鉴权接口")
    private String authPath;
 
    public Boolean getSignOpen() {
        return signOpen;
    }
 
    public void setSignOpen(Boolean signOpen) {
        this.signOpen = signOpen;
    }
 
    public Boolean getAuthOpen() {
        return authOpen;
    }
 
    public void setAuthOpen(Boolean authOpen) {
        this.authOpen = authOpen;
    }
 
    public String getAuthPath() {
        return authPath;
    }
 
    public void setAuthPath(String authPath) {
        this.authPath = authPath;
    }
}