RoleRequest.java 3.6 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
import java.util.List;

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
查尔斯-BUG万象集's avatar
查尔斯-BUG万象集 已提交
24
import javax.validation.constraints.Pattern;
25 26 27 28 29 30 31 32

import lombok.Data;

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

import org.hibernate.validator.constraints.Length;

import top.charles7c.cnadmin.common.base.BaseRequest;
查尔斯-BUG万象集's avatar
查尔斯-BUG万象集 已提交
33
import top.charles7c.cnadmin.common.constant.RegexConsts;
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
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;

    /**
     * 角色名称
     */
52
    @Schema(description = "角色名称", example = "测试人员")
53
    @NotBlank(message = "角色名称不能为空")
查尔斯-BUG万象集's avatar
查尔斯-BUG万象集 已提交
54
    @Pattern(regexp = RegexConsts.GENERAL_NAME, message = "角色名称长度为 1 到 20 位,可以包含中文、字母、数字、下划线,短横线")
55
    private String name;
56 57 58 59

    /**
     * 角色编码
     */
60
    @Schema(description = "角色编码", example = "test")
查尔斯-BUG万象集's avatar
查尔斯-BUG万象集 已提交
61 62
    @NotBlank(message = "角色编码不能为空")
    @Pattern(regexp = RegexConsts.GENERAL_CODE, message = "角色编码长度为 2 到 16 位,可以包含字母、数字,下划线,以字母开头")
63
    private String code;
64 65

    /**
66
     * 角色排序
67
     */
68
    @Schema(description = "角色排序", example = "1")
69
    @NotNull(message = "角色排序不能为空")
70
    private Integer sort;
71 72 73 74

    /**
     * 描述
     */
75
    @Schema(description = "描述", example = "测试人员描述信息")
76
    @Length(max = 200, message = "描述长度不能超过 {max} 个字符")
77 78 79
    private String description;

    /**
80
     * 功能权限:菜单 ID 列表
81
     */
82
    @Schema(description = "功能权限:菜单 ID 列表", example = "1000,1010,1011,1012,1013,1014")
83
    private List<Long> menuIds = new ArrayList<>();
84 85

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

    /**
     * 权限范围:部门 ID 列表
     */
95
    @Schema(description = "权限范围:部门 ID 列表", example = "5")
96
    private List<Long> deptIds = new ArrayList<>();
97 98

    /**
99
     * 状态(1:启用,2:禁用)
100
     */
101
    @Schema(description = "状态(1:启用,2:禁用)", type = "Integer", allowableValues = {"1", "2"}, example = "1")
102 103
    private DisEnableStatusEnum status;
}