Files

41 lines
1.8 KiB
C#
Raw Permalink Normal View History

2025-11-25 17:41:24 +08:00
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码已从模板生成。
//
// 手动更改此文件可能导致应用程序出现意外的行为。
// 如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
namespace Face.Domain.Entities
{
using System;
using System.Collections.Generic;
public partial class Authority
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Authority()
{
this.AppAutho = new HashSet<AppAutho>();
this.OrgAuthority = new HashSet<OrgAuthority>();
this.UserAuthoes = new HashSet<UserAuthoes>();
}
public int Id { get; set; }
public string AuthorityName { get; set; }
public string Desc { get; set; }
public System.DateTime CreateTime { get; set; }
public string CreatedBy { get; set; }
public Nullable<int> IsValid { get; set; }
public string AuthoStatusTypeId { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<AppAutho> AppAutho { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<OrgAuthority> OrgAuthority { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<UserAuthoes> UserAuthoes { get; set; }
}
}