Role.cs 453 Bytes
using HHECS.DataContract;
using System.ComponentModel.DataAnnotations.Schema;

namespace HHECS.RobotTool.Model
{
    /// <summary>
    /// 角色表
    /// </summary>
    public class Role : BaseEntityCU<int>
    {
        public string Code { get; set; } = null!;

        public string Name { get; set; } = null!;

        public string Description { get; set; } = null!;

        [NotMapped]
        public bool IsSelected {  get; set; }
    }
}