33 lines
624 B
C#
33 lines
624 B
C#
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 备 注:角色名称
|
|
/// 默认值:
|
|
///</summary>
|
|
public string RoleName { get; set; } = null!;
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:角色枚举值
|
|
/// 默认值:
|
|
///</summary>
|
|
public int RoleEnum { get; set; }
|
|
|
|
}
|
|
|
|
public class RoleUpdateDto : RoleAddDto
|
|
{
|
|
public long Id { get; set; }
|
|
}
|
|
}
|