using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Entity.Crm { [Table("BAS_RIGHTGROUP")] public class BAS_RIGHTGROUP { [Key] public decimal PKID { get; set; } public string? NAME { get; set; } public decimal PARENTID { get; set; } public DateTime? CTIME { get; set; } public decimal? CREATEUSER { get; set; } public virtual List? BAS_RIGHT { get; set; } } }