Commit c1c0b584 by guojuxing

编辑为仅超管可用时候,删除权限项关联

parent 13006d6c
package com.gic.auth.dto;
import java.io.Serializable;
/**
* 根据操作项ID分组查询权限项和权限项内的操作项数量
* @ClassName: AuthItemDTO

* @Description: 

* @author guojuxing

* @date 2019/11/14 9:51 AM

*/
public class AuthItemDTO implements Serializable{
private static final long serialVersionUID = -5836362806594158048L;
private Integer menuId;
private Integer operationItemCount;
public Integer getMenuId() {
return menuId;
}
public void setMenuId(Integer menuId) {
this.menuId = menuId;
}
public Integer getOperationItemCount() {
return operationItemCount;
}
public void setOperationItemCount(Integer operationItemCount) {
this.operationItemCount = operationItemCount;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment