package com.vci.dto;
|
|
import com.vci.starter.web.pagemodel.Tree;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.List;
|
/**
|
* 授权对象
|
* @author xiej
|
* @date 2024-09-05
|
*/
|
public class UIAuthorDTO implements Serializable {
|
private static final long serialVersionUID = -1996329568646378902L;
|
/**
|
*角色ID
|
*/
|
private String roleId;
|
/**
|
*业务类型
|
*/
|
private String type;
|
/**
|
*上下文
|
*/
|
private String context;
|
/**
|
* 授权的节点
|
*/
|
List<Tree> selectTreeList;
|
|
public String getRoleId() {
|
return roleId;
|
}
|
|
public void setRoleId(String roleId) {
|
this.roleId = roleId;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getContext() {
|
return context;
|
}
|
|
public void setContext(String context) {
|
this.context = context;
|
}
|
|
public List<Tree> getSelectTreeList() {
|
return selectTreeList;
|
}
|
|
public void setSelectTreeList(List<Tree> selectTreeList) {
|
this.selectTreeList = selectTreeList;
|
}
|
|
@Override
|
public String toString() {
|
return "UIAuthorDTO{" +
|
"roleId='" + roleId + '\'' +
|
", type='" + type + '\'' +
|
", context='" + context + '\'' +
|
", selectTreeList=" + selectTreeList +
|
'}';
|
}
|
}
|