mirror of https://gitee.com/stylefeng/roses
【8.3.3】【role】增加角色分类所属的公司id
parent
a155ee4b4e
commit
582873494e
|
@ -57,6 +57,13 @@ public class RoleCategory extends BaseEntity implements AbstractTreeNode<RoleCat
|
|||
@ChineseDescription("角色分类类型:15-业务角色,20-公司角色")
|
||||
private Integer categoryType;
|
||||
|
||||
/**
|
||||
* 所属公司id,当类型为20-公司角色时使用
|
||||
*/
|
||||
@TableField("company_id")
|
||||
@ChineseDescription("所属公司id,当类型为20-公司角色时使用")
|
||||
private Long companyId;
|
||||
|
||||
/**
|
||||
* 角色分类排序
|
||||
*/
|
||||
|
|
|
@ -47,6 +47,12 @@ public class RoleCategoryRequest extends BaseRequest {
|
|||
@ChineseDescription("角色分类类型:15-业务角色,20-公司角色")
|
||||
private Integer categoryType;
|
||||
|
||||
/**
|
||||
* 所属公司id,当类型为20-公司角色时使用
|
||||
*/
|
||||
@ChineseDescription("所属公司id,当类型为20-公司角色时使用")
|
||||
private Long companyId;
|
||||
|
||||
/**
|
||||
* 角色分类排序
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue