
12 changed files with 75 additions and 7 deletions
@ -0,0 +1,19 @@ |
|||
package com.yxt.anrui.portal.api.sysfunction; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* 查询按钮的权限的表单参数 |
|||
*/ |
|||
@ApiModel(value = "查询按钮的权限的表单参数", description = "查询按钮的权限的表单参数") |
|||
@Data |
|||
public class ButtonPermissionQuery { |
|||
@ApiModelProperty("userSid") |
|||
private String userSid; |
|||
@ApiModelProperty("url") |
|||
private String url; |
|||
@ApiModelProperty("type") |
|||
private String type; |
|||
} |
@ -0,0 +1,12 @@ |
|||
package com.yxt.anrui.portal.api.sysfunction; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
@ApiModel(value = "返回查询的按钮权限集合", description = "返回查询的按钮权限集合") |
|||
@Data |
|||
public class ButtonPermissionVo { |
|||
@ApiModelProperty("buttonId") |
|||
private String buttonId; |
|||
} |
Loading…
Reference in new issue