using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Role
{
public class RoleAddDto
{
///
/// 备 注:角色名称
/// 默认值:
///
public string RoleName { get; set; } = null!;
///
/// 备 注:角色枚举值
/// 默认值:
///
public int RoleEnum { get; set; }
}
public class RoleUpdateDto : RoleAddDto
{
public long Id { get; set; }
}
}