RoleRequest.java 2.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (c) 2022-present Charles7c Authors. All Rights Reserved.
 *
 * 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 top.charles7c.cnadmin.system.model.request;

19
import java.util.ArrayList;
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
import java.util.List;

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;

import lombok.Data;

import io.swagger.v3.oas.annotations.media.Schema;

import org.hibernate.validator.constraints.Length;

import top.charles7c.cnadmin.common.base.BaseRequest;
import top.charles7c.cnadmin.common.enums.DataScopeEnum;
import top.charles7c.cnadmin.common.enums.DisEnableStatusEnum;

/**
 * 创建或修改角色信息
 *
 * @author Charles7c
 * @since 2023/2/8 23:12
 */
@Data
@Schema(description = "创建或修改角色信息")
public class RoleRequest extends BaseRequest {

    private static final long serialVersionUID = 1L;

    /**
     * 角色名称
     */
    @Schema(description = "角色名称")
    @NotBlank(message = "角色名称不能为空")
52
    private String name;
53 54 55 56 57

    /**
     * 角色编码
     */
    @Schema(description = "角色编码")
58
    private String code;
59 60

    /**
61
     * 角色排序
62
     */
63 64
    @Schema(description = "角色排序")
    @NotNull(message = "角色排序不能为空")
65
    private Integer sort;
66 67 68 69 70

    /**
     * 描述
     */
    @Schema(description = "描述")
71
    @Length(max = 200, message = "描述长度不能超过 {max} 个字符")
72 73 74
    private String description;

    /**
75
     * 功能权限:菜单 ID 列表
76
     */
77
    @Schema(description = "功能权限:菜单 ID 列表")
78
    private List<Long> menuIds = new ArrayList<>();
79 80

    /**
81
     * 数据权限(1:全部数据权限,2:本部门及以下数据权限,3:本部门数据权限,4:仅本人数据权限,5:自定义数据权限)
82
     */
83
    @Schema(description = "数据权限(1:全部数据权限,2:本部门及以下数据权限,3:本部门数据权限,4:仅本人数据权限,5:自定义数据权限)", type = "Integer",
84 85 86 87 88 89 90
        allowableValues = {"1", "2", "3", "4", "5"})
    private DataScopeEnum dataScope;

    /**
     * 权限范围:部门 ID 列表
     */
    @Schema(description = "权限范围:部门 ID 列表")
91
    private List<Long> deptIds = new ArrayList<>();
92 93

    /**
94
     * 状态(1:启用,2:禁用)
95
     */
96
    @Schema(description = "状态(1:启用,2:禁用)", type = "Integer", allowableValues = {"1", "2"})
97 98
    private DisEnableStatusEnum status;
}