You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
625 B
27 lines
625 B
package com.ruoyi.common.constant;
|
|
|
|
/**
|
|
* 权限通用常量
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public class PermissionConstants
|
|
{
|
|
/** 新增权限 */
|
|
public static final String ADD_PERMISSION = "add";
|
|
|
|
/** 修改权限 */
|
|
public static final String EDIT_PERMISSION = "edit";
|
|
|
|
/** 删除权限 */
|
|
public static final String REMOVE_PERMISSION = "remove";
|
|
|
|
/** 导出权限 */
|
|
public static final String EXPORT_PERMISSION = "export";
|
|
|
|
/** 显示权限 */
|
|
public static final String VIEW_PERMISSION = "view";
|
|
|
|
/** 查询权限 */
|
|
public static final String LIST_PERMISSION = "list";
|
|
}
|
|
|