mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-25 22:42:45 +08:00
56 lines
2.1 KiB
Java
56 lines
2.1 KiB
Java
/*
|
|
* Copyright 2023 杭州白书科技有限公司
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package xyz.playedu.api.constant;
|
|
|
|
/**
|
|
* @Author 杭州白书科技有限公司
|
|
*
|
|
* @create 2023/2/21 14:57
|
|
*/
|
|
public class BPermissionConstant {
|
|
|
|
public static final String TYPE_ACTION = "action";
|
|
public static final String TYPE_DATA = "data";
|
|
|
|
public static final String PASSWORD_CHANGE = "password-change";
|
|
|
|
public static final String ADMIN_USER_INDEX = "admin-user-index";
|
|
public static final String ADMIN_USER_CUD = "admin-user-cud";
|
|
|
|
public static final String ADMIN_ROLE = "admin-role";
|
|
|
|
public static final String DEPARTMENT_CUD = "department-cud";
|
|
|
|
public static final String RESOURCE_CATEGORY = "resource-category";
|
|
|
|
public static final String USER_INDEX = "user-index";
|
|
public static final String USER_STORE = "user-store";
|
|
public static final String USER_UPDATE = "user-update";
|
|
public static final String USER_DESTROY = "user-destroy";
|
|
public static final String USER_LEARN = "user-learn";
|
|
|
|
public static final String COURSE = "course";
|
|
public static final String COURSE_USER = "course-user";
|
|
public static final String COURSE_USER_DESTROY = "course-user-destroy";
|
|
|
|
public static final String RESOURCE_DESTROY = "resource-destroy";
|
|
|
|
public static final String DATA_USER_NAME = "data-user-name";
|
|
public static final String DATA_USER_EMAIL = "data-user-email";
|
|
public static final String DATA_USER_ID_CARD = "data-user-id-card";
|
|
public static final String DATA_ADMIN_EMAIL = "data-admin-email";
|
|
}
|