All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.didiglobal.logi.security.common.vo.resource.MByRVO Maven / Gradle / Ivy

Go to download

logi-security 提供项目大多都需要的一些基础功能(用户、角色、权限、登录、注册、操作记录)

There is a newer version: 2.10.19
Show newest version
package com.didiglobal.logi.security.common.vo.resource;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;


/**
 * @author cjm
 *
 * 资源权限管理/按资源管理的列表信息
 *
 * MByR(ManageByResource)
 */
@Data
@ApiModel(description = "资源权限管理(按资源管理的列表信息)")
public class MByRVO {
    
    @ApiModelProperty(value = "管理权限用户数", dataType = "Integer", required = false)
    private Integer adminUserCnt;

    @ApiModelProperty(value = "查看权限用户数", dataType = "Integer", required = false)
    private Integer viewUserCnt;

    @ApiModelProperty(value = "项目id", dataType = "Integer", required = false)
    private Integer projectId;

    @ApiModelProperty(value = "项目code", dataType = "String", required = false)
    private String projectCode;

    @ApiModelProperty(value = "项目名", dataType = "String", required = false)
    private String projectName;

    @ApiModelProperty(value = "资源类别id", dataType = "Integer", required = false)
    private Integer resourceTypeId;

    @ApiModelProperty(value = "资源类别名", dataType = "String", required = false)
    private String resourceTypeName;

    @ApiModelProperty(value = "具体资源id", dataType = "Integer", required = false)
    private Integer resourceId;

    @ApiModelProperty(value = "具体资源名", dataType = "String", required = false)
    private String resourceName;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy