RbacRoleCreateInputVo.cs 992 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.RbacRole;

/// <summary>
/// 新增角色入参(美国版对外)
/// </summary>
public class RbacRoleCreateInputVo
{
    public string RoleName { get; set; } = string.Empty;

    public string RoleCode { get; set; } = string.Empty;

    public string? Remark { get; set; }

    /// <summary>
    /// 数据范围(与 rbac 的 DataScope 含义一致,int 存储)
    /// </summary>
    public int DataScope { get; set; } = 0;

    public bool State { get; set; } = true;

    /// <summary>
    /// 排序;未传时服务端按 0 处理
    /// </summary>
    public int? OrderNum { get; set; }

    /// <summary>
    /// 访问权限编码 JSON 数组字符串(如 ["manage_labels","manage_people"])
    /// </summary>
    public string? AccessPermissions { get; set; }

    /// <summary>
    /// 兼容旧字段名 <c>accessPermissionCodes</c>
    /// </summary>
    public List<string>? AccessPermissionCodes { get; set; }
}