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

io.github.wslxm.springbootplus2.manage.sys.model.dto.SysRoleAuthsDTO Maven / Gradle / Ivy

The newest version!
package io.github.wslxm.springbootplus2.manage.sys.model.dto;

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

import java.util.List;

/**
 * 用户权限分配
 * @author wangsong
 * @date 2020/9/23 0023 11:47
 * @return
 * @version 1.0.1
 */
@Data
@ToString(callSuper = true)
@ApiModel(value = "SysRoleAuthsDTO 对象", description = "用户权限分配 参数")
public class SysRoleAuthsDTO {


    @ApiModelProperty(notes = "用户Id")
    private String roleId;

    @ApiModelProperty(notes = "角色Ids")
    private List authIds;


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy