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;
|
}
|
}
|