NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Account/ControllerAccess.cs
2026-01-20 07:44:30 +08:00

29 lines
1.1 KiB
C#

using CPRNIMS.Infrastructure.Entities.Common;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Account
{
[Table("ControllerAccess")]
public class ControllerAccess : CommonProperties
{
[Key]
public int ContAccId { get; set; }
public int ControllerAccessId { get; set; }
public string UserId { get; set; } = string.Empty;
public int AccessTypeId { get; set; }
public string Action { get; set; } = string.Empty;
public string Controller { get; set; } = string.Empty;
public string AccessTypeName { get; set; } = string.Empty;
public string ElementMenuName { get; set; } = string.Empty;
public string ToolTipName { get; set; } = string.Empty;
public string IconClassName { get; set; } = string.Empty;
public string IconSpanName { get; set; } = string.Empty;
}
}